<html>
<head>
<style type="text/css">
:root {
--background: #fff;
--background-odd: #f5f5f5;
--background-hover: #d9edfd;
--header-text-color: #474747;
--text-color: #848484;
--text-color-dark: #000;
--text-color-medium: #737373;
--text-color-pale: #b3b3b3;
--inner-border-color: #aaa;
--bold-border-color: #000;
--link-color: #296eaa;
--link-color-pale: #296eaa;
--link-hover: #1a466c;
}
:root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{
--background: #303030;
--background-odd: #3c3c3c;
--background-hover: #464646;
--header-text-color: #dddddd;
--text-color: #b3b3b3;
--text-color-dark: #dddddd;
--text-color-medium: #b2b2b2;
--text-color-pale: #737373;
--inner-border-color: #707070;
--bold-border-color: #777777;
--link-color: #008dc0;
--link-color-pale: #97e1fb;
--link-hover: #00688e;
}
p.dataframe_description {
color: var(--text-color-dark);
}
table.dataframe {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
background-color: var(--background);
color: var(--text-color-dark);
border: none;
border-collapse: collapse;
}
table.dataframe th, td {
padding: 6px;
border: 1px solid transparent;
text-align: left;
}
table.dataframe th {
background-color: var(--background);
color: var(--header-text-color);
}
table.dataframe td {
vertical-align: top;
}
table.dataframe th.bottomBorder {
border-bottom-color: var(--bold-border-color);
}
table.dataframe tbody > tr:nth-child(odd) {
background: var(--background-odd);
}
table.dataframe tbody > tr:nth-child(even) {
background: var(--background);
}
table.dataframe tbody > tr:hover {
background: var(--background-hover);
}
table.dataframe a {
cursor: pointer;
color: var(--link-color);
text-decoration: none;
}
table.dataframe tr:hover > td a {
color: var(--link-color-pale);
}
table.dataframe a:hover {
color: var(--link-hover);
text-decoration: underline;
}
table.dataframe img {
max-width: fit-content;
}
table.dataframe th.complex {
background-color: var(--background);
border: 1px solid var(--background);
}
table.dataframe .leftBorder {
border-left-color: var(--inner-border-color);
}
table.dataframe .rightBorder {
border-right-color: var(--inner-border-color);
}
table.dataframe .rightAlign {
text-align: right;
}
table.dataframe .expanderSvg {
width: 8px;
height: 8px;
margin-right: 3px;
}
table.dataframe .expander {
display: flex;
align-items: center;
}
/* formatting */
table.dataframe .null {
color: var(--text-color-pale);
}
table.dataframe .structural {
color: var(--text-color-medium);
font-weight: bold;
}
table.dataframe .dataFrameCaption {
font-weight: bold;
}
table.dataframe .numbers {
color: var(--text-color-dark);
}
table.dataframe td:hover .formatted .structural, .null {
color: var(--text-color-dark);
}
table.dataframe tr:hover .formatted .structural, .null {
color: var(--text-color-dark);
}
:root {
--scroll-bg: #f5f5f5;
--scroll-fg: #b3b3b3;
}
:root[theme="dark"], :root [data-jp-theme-light="false"]{
--scroll-bg: #3c3c3c;
--scroll-fg: #97e1fb;
}
body {
scrollbar-color: var(--scroll-fg) var(--scroll-bg);
}
body::-webkit-scrollbar {
width: 10px; /* Mostly for vertical scrollbars */
height: 10px; /* Mostly for horizontal scrollbars */
}
body::-webkit-scrollbar-thumb {
background-color: var(--scroll-fg);
}
body::-webkit-scrollbar-track {
background-color: var(--scroll-bg);
}
</style>
</head>
<body>
<table class="dataframe" id="df_1023410176"></table>
<p class="dataframe_description">DataFrame: rowsCount = 1, columnsCount = 2368</p>
</body>
<script>
(function () {
window.DataFrame = window.DataFrame || new (function () {
this.addTable = function (df) {
let cols = df.cols;
for (let i = 0; i < cols.length; i++) {
for (let c of cols[i].children) {
cols[c].parent = i;
}
}
df.nrow = 0
for (let i = 0; i < df.cols.length; i++) {
if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length
}
if (df.id === df.rootId) {
df.expandedFrames = new Set()
df.childFrames = {}
const table = this.getTableElement(df.id)
table.df = df
for (let i = 0; i < df.cols.length; i++) {
let col = df.cols[i]
if (col.parent === undefined && col.children.length > 0) col.expanded = true
}
} else {
const rootDf = this.getTableData(df.rootId)
rootDf.childFrames[df.id] = df
}
}
this.computeRenderData = function (df) {
let result = []
let pos = 0
for (let col = 0; col < df.cols.length; col++) {
if (df.cols[col].parent === undefined)
pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)
}
for (let i = 0; i < result.length; i++) {
let row = result[i]
for (let j = 0; j < row.length; j++) {
let cell = row[j]
if (j === 0)
cell.leftBd = false
if (j < row.length - 1) {
let nextData = row[j + 1]
if (nextData.leftBd) cell.rightBd = true
else if (cell.rightBd) nextData.leftBd = true
} else cell.rightBd = false
}
}
return result
}
this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {
if (result.length === depth) {
const array = [];
if (pos > 0) {
let j = 0
for (let i = 0; j < pos; i++) {
let c = result[depth - 1][i]
j += c.span
let copy = Object.assign({empty: true}, c)
array.push(copy)
}
}
result.push(array)
}
const col = cols[colId];
let size = 0;
if (col.expanded) {
let childPos = pos
for (let i = 0; i < col.children.length; i++) {
let child = col.children[i]
let childLeft = i === 0 && (col.children.length > 1 || leftBorder)
let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)
let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)
childPos += childSize
size += childSize
}
} else {
for (let i = depth + 1; i < result.length; i++)
result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})
size = 1
}
let left = leftBorder
let right = rightBorder
if (size > 1) {
left = true
right = true
}
result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})
return size
}
this.getTableElement = function (id) {
return document.getElementById("df_" + id)
}
this.getTableData = function (id) {
return this.getTableElement(id).df
}
this.createExpander = function (isExpanded) {
const svgNs = "http://www.w3.org/2000/svg"
let svg = document.createElementNS(svgNs, "svg")
svg.classList.add("expanderSvg")
let path = document.createElementNS(svgNs, "path")
if (isExpanded) {
svg.setAttribute("viewBox", "0 -2 8 8")
path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")
} else {
svg.setAttribute("viewBox", "-2 0 8 8")
path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")
}
path.setAttribute("fill", "currentColor")
svg.appendChild(path)
return svg
}
this.renderTable = function (id) {
let table = this.getTableElement(id)
if (table === null) return
table.innerHTML = ""
let df = table.df
let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)
// header
let header = document.createElement("thead")
table.appendChild(header)
let renderData = this.computeRenderData(df)
for (let j = 0; j < renderData.length; j++) {
let rowData = renderData[j]
let tr = document.createElement("tr");
let isLastRow = j === renderData.length - 1
header.appendChild(tr);
for (let i = 0; i < rowData.length; i++) {
let cell = rowData[i]
let th = document.createElement("th");
th.setAttribute("colspan", cell.span)
let colId = cell.id
let col = df.cols[colId];
if (!cell.empty) {
if (col.children.length === 0) {
th.innerHTML = col.name
} else {
let link = document.createElement("a")
link.className = "expander"
let that = this
link.onclick = function () {
col.expanded = !col.expanded
that.renderTable(id)
}
link.appendChild(this.createExpander(col.expanded))
link.innerHTML += col.name
th.appendChild(link)
}
}
let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")
if (col.rightAlign)
classes += " rightAlign"
if (isLastRow)
classes += " bottomBorder"
if (classes.length > 0)
th.setAttribute("class", classes)
tr.appendChild(th)
}
}
// body
let body = document.createElement("tbody")
table.appendChild(body)
let columns = renderData.pop()
for (let row = 0; row < df.nrow; row++) {
let tr = document.createElement("tr");
body.appendChild(tr)
for (let i = 0; i < columns.length; i++) {
let cell = columns[i]
let td = document.createElement("td");
let colId = cell.id
let col = df.cols[colId]
let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")
if (col.rightAlign)
classes += " rightAlign"
if (classes.length > 0)
td.setAttribute("class", classes)
tr.appendChild(td)
let value = col.values[row]
if (value.frameId !== undefined) {
let frameId = value.frameId
let expanded = rootDf.expandedFrames.has(frameId)
let link = document.createElement("a")
link.className = "expander"
let that = this
link.onclick = function () {
if (rootDf.expandedFrames.has(frameId))
rootDf.expandedFrames.delete(frameId)
else rootDf.expandedFrames.add(frameId)
that.renderTable(id)
}
link.appendChild(this.createExpander(expanded))
link.innerHTML += value.value
if (expanded) {
td.appendChild(link)
td.appendChild(document.createElement("p"))
const childTable = document.createElement("table")
childTable.className = "dataframe"
childTable.id = "df_" + frameId
let childDf = rootDf.childFrames[frameId]
childTable.df = childDf
td.appendChild(childTable)
this.renderTable(frameId)
if (childDf.nrow !== childDf.totalRows) {
const footer = document.createElement("p")
footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`
td.appendChild(footer)
}
} else {
td.appendChild(link)
}
} else if (value.style !== undefined) {
td.innerHTML = value.value
td.setAttribute("style", value.style)
} else td.innerHTML = value
this.nodeScriptReplace(td)
}
}
}
this.nodeScriptReplace = function (node) {
if (this.nodeScriptIs(node) === true) {
node.parentNode.replaceChild(this.nodeScriptClone(node), node);
} else {
let i = -1, children = node.childNodes;
while (++i < children.length) {
this.nodeScriptReplace(children[i]);
}
}
return node;
}
this.nodeScriptClone = function (node) {
let script = document.createElement("script");
script.text = node.innerHTML;
let i = -1, attrs = node.attributes, attr;
while (++i < attrs.length) {
script.setAttribute((attr = attrs[i]).name, attr.value);
}
return script;
}
this.nodeScriptIs = function (node) {
return node.tagName === 'SCRIPT';
}
})()
window.call_DataFrame = function (f) {
return f();
};
let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];
if (funQueue) {
funQueue.forEach(function (f) {
f();
});
funQueue = [];
}
})()
/*<!--*/
call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-30T08:34:14.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.0.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-30T08:34:14.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["contact@1forge.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["1Forge"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://1forge.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3, 4, 5], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: contact@1forge.com\nname: 1Forge\nurl: http://1forge.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>contact@1forge.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Stock and Forex Data and Realtime Quotes"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["1Forge Finance APIs"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.0.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"financial\"><span class=\"structural\">[</span>financial<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#24292e"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11, 12], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #24292e\nurl: https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#24292e<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410177, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["1forge.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6, 7, 8, 9, 10, 13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:contact@1forge.com, name:1Forge, url:http://1forge.com }\ndescription: Stock and Forex Data and Realtime Quotes\ntitle: 1Forge Finance APIs\nversion: 0.0.1\nx-apisguru-categories: [financial]\nx-logo: { backgroundColor:#24292e, url:https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg }\nx-origin: format url version\n 0 swagger http://1forge.com/openapi.json 2.0\n\nx-providerName: 1forge.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>con<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2017-06-27T16:49:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml\">https://api.apis.guru/v2/specs/1forge<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"0.0.1: DataRow\">0.0.1</span>", children: [2, 16, 17, 18, 19, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-30T08:34:14.000Z\ninfo: { contact:{ email:contact@1forge.com, name:1Forge, url:http://1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http://1forge.com/openapi.json, version:2.0 }, x-providerName:1forge.com }\nupdated: 2017-06-27T16:49:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-30T08:34:14.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [21], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.0.1: { added:2017-05-30T08:34:14.000Z, info:{ contact:{ email:contact@1forge.com, name:1Forge, url:http://1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http://1forge.com/openapi.json, version:2.0 }, x-providerName:1forge.com }, updated:2017-06-27T16:49:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.0.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-30<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"1forge.com: DataRow\">1forge.com</span>", children: [0, 1, 22], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-30T08:34:14.000Z\npreferred: 0.0.1\nversions: { 0.0.1:{ added:2017-05-30T08:34:14.000Z, info:{ contact:{ email:contact@1forge.com, name:1Forge, url:http://1forge.com }, description:Stock and Forex Data and Realtime Quotes, title:1Forge Finance APIs, version:0.0.1, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#24292e, url:https://api.apis.guru/v2/cache/logo/https_1forge.com_assets_images_f-blue.svg }, x-origin:[1 x 3] { format:swagger, url:http://1forge.com/openapi.json, version:2.0 }, x-providerName:1forge.com }, updated:2017-06-27T16:49:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1forge.com/0.0.1/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-30T08:34:14.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-07-19T10:17:09.188Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-07-19T10:17:09.188Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["1Password Events API Specification."] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Events API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"security\"><span class=\"structural\">[</span>security<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [31], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410178, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["1password.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["events"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [27, 28, 29, 30, 32, 33, 34, 35], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: 1Password Events API Specification.\ntitle: Events API\nversion: 1.0.0\nx-apisguru-categories: [security]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }\nx-origin: format url version\n 0 openapi https://i.1password.com/media/1passwo... 3.0\n\nx-providerName: 1password.com\nx-serviceName: events\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>1Password Event<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-22T10:32:52.774Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [26, 36, 37, 38, 39, 40], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-07-19T10:17:09.188Z\ninfo: { description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }\nupdated: 2021-07-22T10:32:52.774Z\nswaggerUrl: https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-19T10:17:09.188Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [41], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2021-07-19T10:17:09.188Z, info:{ description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }, updated:2021-07-22T10:32:52.774Z, swaggerUrl:https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-19<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"1password.com:events: DataRow\">1password.com:events</span>", children: [24, 25, 42], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-07-19T10:17:09.188Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2021-07-19T10:17:09.188Z, info:{ description:1Password Events API Specification., title:Events API, version:1.0.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-events-reporting/1password-events-api.yaml, version:3.0 }, x-providerName:1password.com, x-serviceName:events }, updated:2021-07-22T10:32:52.774Z, swaggerUrl:https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1password.com/events/1.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-19T10:17:09.188Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-16T15:56:45.939Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.3.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-16T15:56:45.939Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@1password.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["1Password Integrations"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://support.1password.com/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [47, 48, 49], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@1password.com\nname: 1Password Integrations\nurl: https://support.1password.com/\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@1password.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"REST API interface for 1Password Connect.\">REST API interface for 1Password Conn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["1Password Connect"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.3.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"security\"><span class=\"structural\">[</span>security<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [55], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410179, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["1password.local"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["connect"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [50, 51, 52, 53, 54, 56, 57, 58, 59], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@1password.com, name:1Password Integrations, url:https://support.1password.com/ }\ndescription: REST API interface for 1Password Connect.\ntitle: 1Password Connect\nversion: 1.3.0\nx-apisguru-categories: [security]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }\nx-origin: format url version\n 0 openapi https://i.1password.com/media/1passwo... 3.0\n\nx-providerName: 1password.local\nx-serviceName: connect\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-26T08:51:53.432Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\">https://api.apis.guru/v2/specs/1passw<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"1.3.0: DataRow\">1.3.0</span>", children: [46, 60, 61, 62, 63, 64], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-16T15:56:45.939Z\ninfo: { contact:{ email:support@1password.com, name:1Password Integrations, url:https://support.1password.com/ }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-connect/1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }\nupdated: 2021-07-26T08:51:53.432Z\nswaggerUrl: https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16T15:56:45.939Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [65], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.3.0: { added:2021-04-16T15:56:45.939Z, info:{ contact:{ email:support@1password.com, name:1Password Integrations, url:https://support.1password.com/ }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-connect/1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }, updated:2021-07-26T08:51:53.432Z, swaggerUrl:https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.3.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"1password.local:connect: DataRow\">1password.local:connect</span>", children: [44, 45, 66], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-16T15:56:45.939Z\npreferred: 1.3.0\nversions: { 1.3.0:{ added:2021-04-16T15:56:45.939Z, info:{ contact:{ email:support@1password.com, name:1Password Integrations, url:https://support.1password.com/ }, description:REST API interface for 1Password Connect., title:1Password Connect, version:1.3.0, x-apisguru-categories:[security], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_upload.wikimedia.org_wikipedia_commons_thumb_e_e3_1password-logo.svg_1280px-1password-logo.svg.png }, x-origin:[1 x 3] { format:openapi, url:https://i.1password.com/media/1password-connect/1password-connect-api.yaml, version:3.0 }, x-providerName:1password.local, x-serviceName:connect }, updated:2021-07-26T08:51:53.432Z, swaggerUrl:https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/1password.local/connect/1.3.0/openapi.yaml, openapiVer:3.0.2 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16T15:56:45.939Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-15T14:45:58.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-15T14:45:58.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@authentiq.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Authentiq team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://authentiq.io/support"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [71, 72, 73], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@authentiq.com\nname: Authentiq team\nurl: http://authentiq.io/support\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@authentiq.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Strong authentication, without the passwords.\">Strong authentication, without the pa<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [76, 77], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["http://authentiq.com/terms/"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Authentiq API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"security\"><span class=\"structural\">[</span>security<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#F26641"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [83, 84], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #F26641\nurl: https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#F26641<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410180, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["6-dot-authentiqio.appspot.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [74, 75, 78, 79, 80, 81, 82, 85, 86, 87], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@authentiq.com, name:Authentiq team, url:http://authentiq.io/support }\ndescription: Strong authentication, without the passwords.\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntermsOfService: http://authentiq.com/terms/\ntitle: Authentiq API\nversion: 6\nx-apisguru-categories: [security]\nx-logo: { backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Aut... 3.0\n\nx-providerName: 6-dot-authentiqio.appspot.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hel<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\">https://api.apis.guru/v2/specs/6-dot-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [70, 88, 89, 90, 91, 92], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-15T14:45:58.000Z\ninfo: { contact:{ email:hello@authentiq.com, name:Authentiq team, url:http://authentiq.io/support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://authentiq.com/terms/, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T14:45:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [93], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2017-03-15T14:45:58.000Z, info:{ contact:{ email:hello@authentiq.com, name:Authentiq team, url:http://authentiq.io/support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://authentiq.com/terms/, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T14:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"6-dot-authentiqio.appspot.com: DataRow\">6-dot-authentiqio.appspot.com</span>", children: [68, 69, 94], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-15T14:45:58.000Z\npreferred: 6\nversions: { 6:{ added:2017-03-15T14:45:58.000Z, info:{ contact:{ email:hello@authentiq.com, name:Authentiq team, url:http://authentiq.io/support }, description:Strong authentication, without the passwords., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://authentiq.com/terms/, title:Authentiq API, version:6, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/issuer.yaml, version:3.0 }, x-providerName:6-dot-authentiqio.appspot.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/6-dot-authentiqio.appspot.com/6/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T14:45:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-13T11:28:07.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-13T11:28:07.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@ably.io"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Ably Support"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.ably.io/contact"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ablyrealtime"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [99, 100, 101, 102], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@ably.io\nname: Ably Support\nurl: https://www.ably.io/contact\nx-twitter: ablyrealtime\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@ably.io<span class=\"structural\">, </span><span class=\"structural\">name...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\">The [REST API specification](https://<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Platform API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [108], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410181, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ably.io"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["platform"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [103, 104, 105, 106, 107, 109, 110, 111, 112], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@ably.io, name:Ably Support, url:https://www.ably.io/contact, x-twitter:ablyrealtime }\ndescription: The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably.\ntitle: Platform API\nversion: 1.1.0\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/abl... 3.0\n\nx-providerName: ably.io\nx-serviceName: platform\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-26T09:42:14.653Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\">https://api.apis.guru/v2/specs/ably.i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.1.0: DataRow\">1.1.0</span>", children: [98, 113, 114, 115, 116, 117], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-13T11:28:07.000Z\ninfo: { contact:{ email:support@ably.io, name:Ably Support, url:https://www.ably.io/contact, x-twitter:ablyrealtime }, description:The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }\nupdated: 2021-07-26T09:42:14.653Z\nswaggerUrl: https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-13T11:28:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [118], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1.0: { added:2019-07-13T11:28:07.000Z, info:{ contact:{ email:support@ably.io, name:Ably Support, url:https://www.ably.io/contact, x-twitter:ablyrealtime }, description:The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }, updated:2021-07-26T09:42:14.653Z, swaggerUrl:https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-13<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"ably.io:platform: DataRow\">ably.io:platform</span>", children: [96, 97, 119], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-13T11:28:07.000Z\npreferred: 1.1.0\nversions: { 1.1.0:{ added:2019-07-13T11:28:07.000Z, info:{ contact:{ email:support@ably.io, name:Ably Support, url:https://www.ably.io/contact, x-twitter:ablyrealtime }, description:The [REST API specification](https://www.ably.io/documentation/rest-api) for Ably., title:Platform API, version:1.1.0, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/platform-v1.yaml, version:3.0 }, x-providerName:ably.io, x-serviceName:platform }, updated:2021-07-26T09:42:14.653Z, swaggerUrl:https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/ably.io/platform/1.1.0/openapi.yaml, openapiVer:3.0.1 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-13T11:28:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-07-26T09:45:31.536Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-07-26T09:45:31.536Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ablyrealtime"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [124], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: ablyrealtime\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>ablyrealtime<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\n\nDetailed information on using this API can be found in the Ably <a href="https://ably.com/documentation/control-api">developer documentation</a>.\n\nControl API is currently in Beta.\n\">Use the Control API to manage your ap<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Control API v1"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.14"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [130], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410182, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ably.net"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["control"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [125, 126, 127, 128, 129, 131, 132, 133, 134], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:ablyrealtime }\ndescription: Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\n\nDetailed information on using this API can be found in the Ably <a href="https://ably.com/documentation/control-api">developer documentation</a>.\n\nControl API is currently in Beta.\n\ntitle: Control API v1\nversion: 1.0.14\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/abl... 3.0\n\nx-providerName: ably.net\nx-serviceName: control\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>ably<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-26T09:47:48.565Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\">https://api.apis.guru/v2/specs/ably.n<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.0.14: DataRow\">1.0.14</span>", children: [123, 135, 136, 137, 138, 139], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-07-26T09:45:31.536Z\ninfo: { contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\n\nDetailed information on using this API can be found in the Ably <a href="https://ably.com/documentation/control-api">developer documentation</a>.\n\nControl API is currently in Beta.\n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }\nupdated: 2021-07-26T09:47:48.565Z\nswaggerUrl: https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-26T09:45:31.536Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [140], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.14: { added:2021-07-26T09:45:31.536Z, info:{ contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\n\nDetailed information on using this API can be found in the Ably <a href="https://ably.com/documentation/control-api">developer documentation</a>.\n\nControl API is currently in Beta.\n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }, updated:2021-07-26T09:47:48.565Z, swaggerUrl:https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"ably.net:control: DataRow\">ably.net:control</span>", children: [121, 122, 141], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-07-26T09:45:31.536Z\npreferred: 1.0.14\nversions: { 1.0.14:{ added:2021-07-26T09:45:31.536Z, info:{ contact:{ x-twitter:ablyrealtime }, description:Use the Control API to manage your applications, namespaces, keys, queues, rules, and more.\n\nDetailed information on using this API can be found in the Ably <a href="https://ably.com/documentation/control-api">developer documentation</a>.\n\nControl API is currently in Beta.\n, title:Control API v1, version:1.0.14, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ablyrealtime_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ably/open-specs/main/definitions/control-v1.yaml, version:3.0 }, x-providerName:ably.net, x-serviceName:control }, updated:2021-07-26T09:47:48.565Z, swaggerUrl:https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/ably.net/control/1.0.14/openapi.yaml, openapiVer:3.0.1 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-07-26T09:45:31.536Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-14T17:12:40.648Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-14T17:12:40.648Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\">Abstract IP geolocation API allows de<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["IP geolocation API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\"><span class=\"structural\">[</span>location<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [150], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410183, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["abstractapi.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["geolocation"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [146, 147, 148, 149, 151, 152, 153, 154], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP.\ntitle: IP geolocation API\nversion: 1.0.0\nx-apisguru-categories: [location]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }\nx-origin: format url version\n 0 openapi https://documentation.abstractapi.com... 3.0\n\nx-providerName: abstractapi.com\nx-serviceName: geolocation\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Abstract IP geo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API Documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.abstractapi.com/ip-geolocation-api#docs\">https://www.abstractapi.com/ip-geoloc<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [156, 157], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: API Documentation\nurl: https://www.abstractapi.com/ip-geolocation-api#docs\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>API Documentation<span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/abstra<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [145, 155, 158, 159, 160, 161, 162], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-14T17:12:40.648Z\ninfo: { description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https://documentation.abstractapi.com/ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }\nexternalDocs: { description:API Documentation, url:https://www.abstractapi.com/ip-geolocation-api#docs }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-14T17:12:40.648Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [163], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2021-04-14T17:12:40.648Z, info:{ description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https://documentation.abstractapi.com/ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }, externalDocs:{ description:API Documentation, url:https://www.abstractapi.com/ip-geolocation-api#docs }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-14<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"abstractapi.com:geolocation: DataRow\">abstractapi.com:geolocation</span>", children: [143, 144, 164], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-14T17:12:40.648Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2021-04-14T17:12:40.648Z, info:{ description:Abstract IP geolocation API allows developers to retrieve the region, country and city behind any IP worldwide. The API covers the geolocation of IPv4 and IPv6 addresses in 180+ countries worldwide. Extra information can be retrieved like the currency, flag or language associated to an IP., title:IP geolocation API, version:1.0.0, x-apisguru-categories:[location], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_global-uploads.webflow.com_5ebbd0a566a3996636e55959_5ec2ba29feeeb05d69160e7b_webclip.png }, x-origin:[1 x 3] { format:openapi, url:https://documentation.abstractapi.com/ip-geolocation-openapi.json, version:3.0 }, x-providerName:abstractapi.com, x-serviceName:geolocation }, externalDocs:{ description:API Documentation, url:https://www.abstractapi.com/ip-geolocation-api#docs }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/abstractapi.com/geolocation/1.0.0/openapi.json, swaggerYamlUrl:http... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-14T17:12:40.648Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-10T10:41:43.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-10T10:41:43.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"### The Internet of Things for Everyone\n\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\n\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\n\n#### Authentication\n\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username "io_username" and the key "io_key_12345" could look like this:\n\n $ curl -H "X-AIO-Key: io_key_12345" https://io.adafruit.com/api/v2/io_username/feeds\n\nOr like this:\n\n $ curl "https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\n\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\n\n```js\nvar request = require('request');\n\nvar options = {\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\n headers: {\n 'X-AIO-Key': 'io_key_12345',\n 'Content-Type': 'application/json'\n }\n};\n\nfunction callback(error, response, body) {\n if (!error && response.statusCode == 200) {\n var feeds = JSON.parse(body);\n console.log(feeds.length + " FEEDS AVAILABLE");\n\n feeds.forEach(function (feed) {\n console.log(feed.name, feed.key);\n })\n }\n}\n\nrequest(options, callback);\n```\n\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\n\n```arduino\n/// based on\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\n\n#include <Arduino.h>\n#include <ESP8266WiFi.h>\n#include <ESP8266WiFiMulti.h>\n#include <ESP8266HTTPClient.h>\n\nESP8266WiFiMulti WiFiMulti;\n\nconst char* ssid = "---";\nconst char* password = "---";\n\nconst char* host = "io.adafruit.com";\n\nconst char* io_key = "---";\nconst char* path_with_username = "/api/v2/---/dashboards";\n\n// Use web browser to view and copy\n// SHA1 fingerprint of the certificate\nconst char* fingerprint = "77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18";\n\nvoid setup() {\n Serial.begin(115200);\n\n for(uint8_t t = 4; t > 0; t--) {\n Serial.printf("[SETUP] WAIT %d...\n", t);\n Serial.flush();\n delay(1000);\n }\n\n WiFi.mode(WIFI_STA);\n WiFiMulti.addAP(ssid, password);\n\n // wait for WiFi connection\n while(WiFiMulti.run() != WL_CONNECTED) {\n Serial.print('.');\n delay(1000);\n }\n\n Serial.println("[WIFI] connected!");\n\n HTTPClient http;\n\n // start request with URL and TLS cert fingerprint for verification\n http.begin("https://" + String(host) + String(path_with_username), fingerprint);\n\n // IO API authentication\n http.addHeader("X-AIO-Key", io_key);\n\n // start connection and send HTTP header\n int httpCode = http.GET();\n\n // httpCode will be negative on error\n if(httpCode > 0) {\n // HTTP header has been send and Server response header has been handled\n Serial.printf("[HTTP] GET response: %d\n", httpCode);\n\n // HTTP 200 OK\n if(httpCode == HTTP_CODE_OK) {\n String payload = http.getString();\n Serial.println(payload);\n }\n\n http.end();\n }\n}\n\nvoid loop() {}\n```\n\n#### Client Libraries\n\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\n\n\">### The Internet of Things for Everyo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adafruit IO REST API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"iot\"><span class=\"structural\">[</span>iot<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [173], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410184, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adafruit.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [169, 170, 171, 172, 174, 175, 176], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: ### The Internet of Things for Everyone\n\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\n\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\n\n#### Authentication\n\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username "io_username" and the key "io_key_12345" could look like this:\n\n $ curl -H "X-AIO-Key: io_key_12345" https://io.adafruit.com/api/v2/io_username/feeds\n\nOr like this:\n\n $ curl "https://io.adafruit.com/api/v2/io_username/feeds?X-AIO-Key=io_key_12345\n\nUsing the node.js [request](https://github.com/request/request) library, IO HTTP requests are as easy as:\n\n```js\nvar request = require('request');\n\nvar options = {\n url: 'https://io.adafruit.com/api/v2/io_username/feeds',\n headers: {\n 'X-AIO-Key': 'io_key_12345',\n 'Content-Type': 'application/json'\n }\n};\n\nfunction callback(error, response, body) {\n if (!error && response.statusCode == 200) {\n var feeds = JSON.parse(body);\n console.log(feeds.length + " FEEDS AVAILABLE");\n\n feeds.forEach(function (feed) {\n console.log(feed.name, feed.key);\n })\n }\n}\n\nrequest(options, callback);\n```\n\nUsing the ESP8266 Arduino HTTPClient library, an HTTPS GET request would look like this (replacing `---` with your own values in the appropriate locations):\n\n```arduino\n/// based on\n/// https://github.com/esp8266/Arduino/blob/master/libraries/ESP8266HTTPClient/examples/Authorization/Authorization.ino\n\n#include <Arduino.h>\n#include <ESP8266WiFi.h>\n#include <ESP8266WiFiMulti.h>\n#include <ESP8266HTTPClient.h>\n\nESP8266WiFiMulti WiFiMulti;\n\nconst char* ssid = "---";\nconst char* password = "---";\n\nconst char* host = "io.adafruit.com";\n\nconst char* io_key = "---";\nconst char* path_with_username = "/api/v2/---/dashboards";\n\n// Use web browser to view and copy\n// SHA1 fingerprint of the certificate\nconst char* fingerprint = "77 00 54 2D DA E7 D8 03 27 31 23 99 EB 27 DB CB A5 4C 57 18";\n\nvoid setup() {\n Serial.begin(115200);\n\n for(uint8_t t = 4; t > 0; t--) {\n Serial.printf("[SETUP] WAIT %d...\n", t);\n Serial.flush();\n delay(1000);\n }\n\n WiFi.mode(WIFI_STA);\n WiFiMulti.addAP(ssid, password);\n\n // wait for WiFi connection\n while(WiFiMulti.run() != WL_CONNECTED) {\n Serial.print('.');\n delay(1000);\n }\n\n Serial.println("[WIFI] connected!");\n\n HTTPClient http;\n\n // start request with URL and TLS cert fingerprint for verification\n http.begin("https://" + String(host) + String(path_with_username), fingerprint);\n\n // IO API authentication\n http.addHeader("X-AIO-Key", io_key);\n\n // start connection and send HTTP header\n int httpCode = http.GET();\n\n // httpCode will be negative on error\n if(httpCode > 0) {\n // HTTP header has been send and Server response header has been handled\n Serial.printf("[HTTP] GET response: %d\n", httpCode);\n\n // HTTP 200 OK\n if(httpCode == HTTP_CODE_OK) {\n String payload = http.getString();\n Serial.println(payload);\n }\n\n http.end();\n }\n}\n\nvoid loop() {}\n```\n\n#### Client Libraries\n\nWe have client libraries to help you get started with your project: [Python](https://github.com/adafruit/io-client-python), [Ruby](https://github.com/adafruit/io-client-ruby), [Arduino C++](https://github.com/adafruit/Adafruit_IO_Arduino), [Javascript](https://github.com/adafruit/adafruit-io-node), and [Go](https://github.com/adafruit/io-client-go) are available. They're all open source, so if they don't already do what you want, you can fork and add any feature you'd like.\n\n\ntitle: Adafruit IO REST API\nversion: 2.0.0\nx-apisguru-categories: [iot]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/ada... 2.0\n\nx-providerName: adafruit.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>### The Interne<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/adafru<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2.0.0: DataRow\">2.0.0</span>", children: [168, 177, 178, 179, 180, 181], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-10T10:41:43.000Z\ninfo: { description:### The Internet of Things for Everyone\n\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\n\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\n\n#### Authentication\n\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username "io_username" and the key..., title:Adafruit IO REST API, version:2.0.0, x-apisguru-categories:[iot], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_adafruit_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/adafruit/io-api/gh-pages/v2.json, version:2.0 }, x-providerName:adafruit.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-10T10:41:43.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [182], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.0.0: { added:2018-02-10T10:41:43.000Z, info:{ description:### The Internet of Things for Everyone\n\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\n\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\n\n#### Authentication\n\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available feeds for a user with the username "io..., updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adafruit.com/2.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-10<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adafruit.com: DataRow\">adafruit.com</span>", children: [166, 167, 183], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-10T10:41:43.000Z\npreferred: 2.0.0\nversions: { 2.0.0:{ added:2018-02-10T10:41:43.000Z, info:{ description:### The Internet of Things for Everyone\n\nThe Adafruit IO HTTP API provides access to your Adafruit IO data from any programming language or hardware environment that can speak HTTP. The easiest way to get started is with [an Adafruit IO learn guide](https://learn.adafruit.com/series/adafruit-io-basics) and [a simple Internet of Things capable device like the Feather Huzzah](https://www.adafruit.com/product/2821).\n\nThis API documentation is hosted on GitHub Pages and is available at [https://github.com/adafruit/io-api](https://github.com/adafruit/io-api). For questions or comments visit the [Adafruit IO Forums](https://forums.adafruit.com/viewforum.php?f=56) or the [adafruit-io channel on the Adafruit Discord server](https://discord.gg/adafruit).\n\n#### Authentication\n\nAuthentication for every API request happens through the `X-AIO-Key` header or query parameter and your IO API key. A simple cURL request to get all available... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-10T10:41:43.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-03T07:01:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.5.0-pre.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-03T07:01:34.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["opensource@shinesolutions.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Shine Solutions"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://shinesolutions.com"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adobe"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [188, 189, 190, 191], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: opensource@shinesolutions.com\nname: Shine Solutions\nurl: http://shinesolutions.com\nx-twitter: Adobe\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>opensource@shinesolut<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\">Swagger AEM is an OpenAPI specificati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adobe Experience Manager (AEM) API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.5.0-pre.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"marketing\"><span class=\"structural\">[</span>marketing<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [197], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410185, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adobe.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aem"] },
{ name: "<span title=\"x-unofficialSpec: Boolean\">x-unofficialSpec</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [192, 193, 194, 195, 196, 198, 199, 200, 201, 202], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:opensource@shinesolutions.com, name:Shine Solutions, url:http://shinesolutions.com, x-twitter:Adobe }\ndescription: Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API\ntitle: Adobe Experience Manager (AEM) API\nversion: 3.5.0-pre.0\nx-apisguru-categories: [marketing]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/shi... 3.0\n\nx-providerName: adobe.com\nx-serviceName: aem\nx-unofficialSpec: true\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>ope<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\">https://api.apis.guru/v2/specs/adobe.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.5.0-pre.0: DataRow\">3.5.0-pre.0</span>", children: [187, 203, 204, 205, 206, 207], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-03T07:01:34.000Z\ninfo: { contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http://shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-03T07:01:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [208], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.5.0-pre.0: { added:2019-01-03T07:01:34.000Z, info:{ contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http://shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.5.0-pre.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adobe.com:aem: DataRow\">adobe.com:aem</span>", children: [185, 186, 209], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-03T07:01:34.000Z\npreferred: 3.5.0-pre.0\nversions: { 3.5.0-pre.0:{ added:2019-01-03T07:01:34.000Z, info:{ contact:{ email:opensource@shinesolutions.com, name:Shine Solutions, url:http://shinesolutions.com, x-twitter:Adobe }, description:Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API, title:Adobe Experience Manager (AEM) API, version:3.5.0-pre.0, x-apisguru-categories:[marketing], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adobe_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/shinesolutions/swagger-aem/master/conf/api.yml, version:3.0 }, x-providerName:adobe.com, x-serviceName:aem, x-unofficialSpec:true }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adobe.com/aem/3.5.0-pre.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-03T07:01:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [214, 215, 216, 217], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\n```\">The Account API provides endpoints fo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen for Platforms: Account API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [224], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410186, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["AccountService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [218, 219, 220, 221, 222, 223, 225, 226, 227, 228, 229, 230], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Account API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen for Platforms: Account API\nversion: 6\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: AccountService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [213, 231, 232, 233, 234, 235], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Acc..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Account API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/AccountService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:AccountService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [236], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that w..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/AccountService/6/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:AccountService: DataRow\">adyen.com:AccountService</span>", children: [211, 212, 237], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 6\nversions: { 6:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and KYC-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Account API, you must use basic authentication credentials of your web service user. If you don't have one, contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: app... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-14T12:42:12.263Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-14T12:42:12.263Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [242, 243, 244, 245], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\n\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\n\n ## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Versioning\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\n```\n## Going live\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\n\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\">The Balance Platform API enables you <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Issuing: Balance Platform API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [252], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410187, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["BalancePlatformService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [246, 247, 248, 249, 250, 251, 253, 254, 255, 256, 257], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\n\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\n\n ## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Versioning\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://balanceplatform-api-test.adyen.com/bcl/v1\n```\n## Going live\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to `https://balanceplatform-api-live.adyen.com/bcl/v1`.\n\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Issuing: Balance Platform API\nversion: 1\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: BalancePlatformService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-22T23:16:57.458Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"1: DataRow\">1</span>", children: [241, 258, 259, 260, 261, 262], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-14T12:42:12.263Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\n\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\n\n ## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Versioning\nBalance Platform API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://balanceplatform-api-test.adyen.com/bcl/v..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Issuing: Balance Platform API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BalancePlatformService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BalancePlatformService }\nupdated: 2021-11-22T23:16:57.458Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-14T12:42:12.263Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [263], rightAlign: false, values: ["<span class=\"formatted\" title=\"1: { added:2021-06-14T12:42:12.263Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\n\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\n\n ## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Versioning\nBalance Platform API supports versioning of its end..., updated:2021-11-22T23:16:57.458Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/BalancePlatformService/1/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-14T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:BalancePlatformService: DataRow\">adyen.com:BalancePlatformService</span>", children: [239, 240, 264], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-14T12:42:12.263Z\npreferred: 1\nversions: { 1:{ added:2021-06-14T12:42:12.263Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform API enables you to create a platform, onboard users as account holders, create balance accounts, and issue cards.\n\nFor information about use cases, refer to [Adyen Issuing](https://docs.adyen.com/issuing).\n\n ## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Versioning\nBalance Plat... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-14T12:42:12.263Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["50"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [269, 270, 271, 272], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\">The BIN Lookup API provides endpoints<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen BinLookup API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["50"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [279], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410188, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["BinLookupService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [273, 274, 275, 276, 277, 278, 280, 281, 282, 283, 284, 285], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN.\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen BinLookup API\nversion: 50\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: BinLookupService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"50: DataRow\">50</span>", children: [268, 286, 287, 288, 289, 290], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }\nupdated: 2021-11-01T23:17:40.475Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [291], rightAlign: false, values: ["<span class=\"formatted\" title=\"50: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }, updated:2021-11-01T23:17:40.475Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">50: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:BinLookupService: DataRow\">adyen.com:BinLookupService</span>", children: [266, 267, 292], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 50\nversions: { 50:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The BIN Lookup API provides endpoints for retrieving information, such as cost estimates, and 3D Secure supported version based on a given BIN., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen BinLookup API, version:50, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/BinLookupService-v50.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:BinLookupService }, updated:2021-11-01T23:17:40.475Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/BinLookupService/50/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/s... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [297, 298, 299, 300], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\n\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\n\n## Authentication\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://checkout-test.adyen.com/v68/payments\n```\">Adyen Checkout API provides a simple <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Checkout API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [307], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410189, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["CheckoutService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [301, 302, 303, 304, 305, 306, 308, 309, 310, 311, 312, 313], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\n\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\n\n## Authentication\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://checkout-test.adyen.com/v68/payments\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen Checkout API\nversion: 68\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: CheckoutService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"68: DataRow\">68</span>", children: [296, 314, 315, 316, 317, 318], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\n\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\n\n## Authentication\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developmen..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Checkout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/CheckoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:CheckoutService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [319], rightAlign: false, values: ["<span class=\"formatted\" title=\"68: { added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\n\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\n\n## Authentication\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/CheckoutService/68/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">68: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:CheckoutService: DataRow\">adyen.com:CheckoutService</span>", children: [294, 295, 320], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\npreferred: 68\nversions: { 68:{ added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:Adyen Checkout API provides a simple and flexible way to initiate and authorise online payments. You can use the same integration for payments made with cards (including 3D Secure), mobile wallets, and local payment methods (for example, iDEAL and Sofort).\n\nThis API reference provides information on available endpoints and how to interact with them. To learn more about the API, visit [Checkout documentation](https://docs.adyen.com/online-payments).\n\n## Authentication\nEach request to the Checkout API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n``... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Support"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://support.adyen.com/"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [325, 326, 327, 328], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@adyen.com\nname: Adyen Support\nurl: https://support.adyen.com/\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@adyen.com<span class=\"structural\">, </span><span class=\"structural\">na...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"A web service containing utility functions available for merchants integrating with Checkout APIs.\n## Authentication\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://checkout-test.adyen.com/v1/originKeys\n```\">A web service containing utility func<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.adyen.com/legal/terms-conditions\">https://docs.adyen.com/legal/terms-co<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Checkout Utility Service"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [335], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410190, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["CheckoutUtilityService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [329, 330, 331, 332, 333, 334, 336, 337, 338, 339], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@adyen.com, name:Adyen Support, url:https://support.adyen.com/, x-twitter:Adyen }\ndescription: A web service containing utility functions available for merchants integrating with Checkout APIs.\n## Authentication\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://checkout-test.adyen.com/v1/originKeys\n```\ntermsOfService: https://docs.adyen.com/legal/terms-conditions\ntitle: Adyen Checkout Utility Service\nversion: 1\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: converter format url version\n 0 { url:https://github.com/lucybot/api-... openapi https://raw.githubusercontent.com/ady... 3.0\n\nx-providerName: adyen.com\nx-serviceName: CheckoutUtilityService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1: DataRow\">1</span>", children: [324, 340, 341, 342, 343, 344], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { contact:{ email:support@adyen.com, name:Adyen Support, url:https://support.adyen.com/, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.\n## Authentication\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://checkout-test.adyen.com/v1/originKeys\n```, termsOfService:https://docs.adyen.com/legal/terms-conditions, title:Adyen Checkout Utility Service, version:1, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 4] { converter:{ url:https://github.com/lucybot/api-spec-converter, version:2.7.11 }, format:openapi, url:https://raw.githubusercontent.com/adyen/adyen-openapi/master/specs/3.0/CheckoutUtilityService-v1.json, version:3.0 }, x-providerName:adyen.com, x-serviceName:CheckoutUtilityService }\nupdated: 2021-06-18T13:57:32.889Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [345], rightAlign: false, values: ["<span class=\"formatted\" title=\"1: { added:2021-06-18T13:57:32.889Z, info:{ contact:{ email:support@adyen.com, name:Adyen Support, url:https://support.adyen.com/, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.\n## Authentication\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is t..., updated:2021-06-18T13:57:32.889Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/CheckoutUtilityService/1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:CheckoutUtilityService: DataRow\">adyen.com:CheckoutUtilityService</span>", children: [322, 323, 346], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 1\nversions: { 1:{ added:2021-06-18T13:57:32.889Z, info:{ contact:{ email:support@adyen.com, name:Adyen Support, url:https://support.adyen.com/, x-twitter:Adyen }, description:A web service containing utility functions available for merchants integrating with Checkout APIs.\n## Authentication\nEach request to the Checkout Utility API must be signed with an API key. For this, obtain an API Key from your Customer Area, as described in [How to get the Checkout API key](https://docs.adyen.com/developers/user-management/how-to-get-the-checkout-api-key). Then set this key to the `X-API-Key` header value, for example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: Your_Checkout_API_key" \\n...\n```\nNote that when going live, you need to generate a new API Key to access the [live endpoints](https://docs.adyen.com/developers/api-reference/live-endpoints).\n\n## Versioning\nCheckout API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [351, 352, 353, 354], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\n```\">The Fund API provides endpoints for m<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen for Platforms: Fund API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [361], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410191, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["FundService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [355, 356, 357, 358, 359, 360, 362, 363, 364, 365, 366, 367], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Fund API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Fund/v6/accountHolderBalance\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen for Platforms: Fund API\nversion: 6\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: FundService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [350, 368, 369, 370, 371, 372], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Fund API supports versioning..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Fund API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/FundService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:FundService }\nupdated: 2021-11-01T23:17:40.475Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [373], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need ..., updated:2021-11-01T23:17:40.475Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/FundService/6/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:FundService: DataRow\">adyen.com:FundService</span>", children: [348, 349, 374], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 6\nversions: { 6:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Fund API provides endpoints for managing the funds in the accounts on your platform. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms).\n## Authentication\nTo connect to the Fund API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n``... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [379, 380, 381, 382], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\n\n## Authentication\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\n```\">The Hosted onboarding API provides en<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen for Platforms: Hosted Onboarding"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [389], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410192, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["HopService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [383, 384, 385, 386, 387, 388, 390, 391, 392, 393, 394, 395], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\n\n## Authentication\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Hosted onboarding API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Hop/v6/getOnboardingUrl\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen for Platforms: Hosted Onboarding\nversion: 6\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: HopService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [378, 396, 397, 398, 399, 400], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\n\n## Authentication\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Hosted onboarding API suppo..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Hosted Onboarding, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/HopService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:HopService }\nupdated: 2021-11-01T23:17:40.475Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [401], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\n\n## Authentication\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need ..., updated:2021-11-01T23:17:40.475Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/HopService/6/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:HopService: DataRow\">adyen.com:HopService</span>", children: [376, 377, 402], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 6\nversions: { 6:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Hosted onboarding API provides endpoints that you can use to generate links to Adyen-hosted pages, such as an [onboarding page](https://docs.adyen.com/platforms/hosted-onboarding-page) or a [PCI compliance questionnaire](https://docs.adyen.com/platforms/platforms-for-partners). Then you can provide the link to your account holder so they can complete their onboarding.\n\n## Authentication\nTo connect to the Hosted onboarding API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use your credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-21T10:54:37.877Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-21T10:54:37.877Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [407, 408, 409, 410], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\">The Notification API sends notificati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen for Platforms: Notifications"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [417], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410193, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["MarketPayNotificationService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [411, 412, 413, 414, 415, 416, 418, 419, 420, 421, 422, 423], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen for Platforms: Notifications\nversion: 6\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: MarketPayNotificationService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [406, 424, 425, 426, 427, 428], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-21T10:54:37.877Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications)., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:MarketPayNotificationService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-21T10:54:37.877Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [429], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2021-06-21T10:54:37.877Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications)., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:Mar..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/MarketPayNotificationService/6/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-21T10:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:MarketPayNotificationService: DataRow\">adyen.com:MarketPayNotificationService</span>", children: [404, 405, 430], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-21T10:54:37.877Z\npreferred: 6\nversions: { 6:{ added:2021-06-21T10:54:37.877Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification API sends notifications to the endpoints specified in a given subscription. Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications)., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Notifications, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-21T10:54:37.877Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [435, 436, 437, 438], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\n## Authentication\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\n```\">The Notification Configuration API pr<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Adyen for Platforms: Notification Configuration API\">Adyen for Platforms: Notification Con<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [445], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410194, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["NotificationConfigurationService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [439, 440, 441, 442, 443, 444, 446, 447, 448, 449, 450, 451], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\n## Authentication\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Notification Configuration API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Notification/v6/createNotificationConfiguration\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen for Platforms: Notification Configuration API\nversion: 6\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: NotificationConfigurationService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"6: DataRow\">6</span>", children: [434, 452, 453, 454, 455, 456], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\n## Authentication\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Notification Configuration API supports versioning of its endpoints through a ..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen for Platforms: Notification Configuration API, version:6, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/NotificationConfigurationService-v6.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:NotificationConfigurationService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [457], rightAlign: false, values: ["<span class=\"formatted\" title=\"6: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\n## Authentication\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to ac..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/NotificationConfigurationService/6/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:NotificationConfigurationService: DataRow\">adyen.com:NotificationConfigurationService</span>", children: [432, 433, 458], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 6\nversions: { 6:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Notification Configuration API provides endpoints for setting up and testing notifications that inform you of events on your platform, for example when a KYC check or a payout has been completed.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/platforms/notifications).\n## Authentication\nTo connect to the Notification Configuration API, you must use basic authentication credentials of your web service user. If you don't have one, contact our [Adyen Support Team](https://support.adyen.com/hc/en-us/requests/new). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [463, 464, 465, 466], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\n```\">A set of API endpoints that allow you<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Payment API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [473], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410195, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["PaymentService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [467, 468, 469, 470, 471, 472, 474, 475, 476, 477, 478, 479], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://pal-test.adyen.com/pal/servlet/Payment/v68/authorise\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen Payment API\nversion: 68\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: PaymentService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"68: DataRow\">68</span>", children: [462, 480, 481, 482, 483, 484], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nPayments API supports versio..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Payment API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PaymentService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [485], rightAlign: false, values: ["<span class=\"formatted\" title=\"68: { added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you ..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/PaymentService/68/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">68: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:PaymentService: DataRow\">adyen.com:PaymentService</span>", children: [460, 461, 486], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\npreferred: 68\nversions: { 68:{ added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n..... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [491, 492, 493, 494], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\n\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\n## Authentication\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\n\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\n\n```\ncurl\n-U "storePayout@Company.[YourCompany]":"YourBasicAuthenticationPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n\">A set of API endpoints that allow you<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Payout API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [501], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410196, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["PayoutService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [495, 496, 497, 498, 499, 500, 502, 503, 504, 505, 506, 507], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\n\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\n## Authentication\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\n\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\n\n```\ncurl\n-U "storePayout@Company.[YourCompany]":"YourBasicAuthenticationPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going live, you need to generate new API credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen Payout API\nversion: 68\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: PayoutService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-12T23:18:19.544Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"68: DataRow\">68</span>", children: [490, 508, 509, 510, 511, 512], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\n\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\n## Authentication\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\n\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate your request when submitting a payout:\n\n```\ncurl\n-U "storePayout@Company.[YourCompany]":"YourBasicAuthenticationPassword" \\n-H "Content-Type: application/json" \\n...\n```\nWhen going ..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Payout API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PayoutService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:PayoutService }\nupdated: 2021-11-12T23:18:19.544Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [513], rightAlign: false, values: ["<span class=\"formatted\" title=\"68: { added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\n\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\n## Authentication\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\n\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The following example shows how to authenticate yo..., updated:2021-11-12T23:18:19.544Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/PayoutService/68/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">68: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:PayoutService: DataRow\">adyen.com:PayoutService</span>", children: [488, 489, 514], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\npreferred: 68\nversions: { 68:{ added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:A set of API endpoints that allow you to store payout details, confirm, or decline a payout.\n\nFor more information, refer to [Online payouts](https://docs.adyen.com/online-payments/online-payouts).\n## Authentication\nTo use the Payout API, you need to have [two API credentials](https://docs.adyen.com/online-payments/online-payouts#payouts-to-bank-accounts-and-wallets): one for storing payout details and submitting payouts, and another one for confirming or declining payouts. If you don't have the required API credentials, contact our [Support Team](https://support.adyen.com/hc/en-us/requests/new).\n\nBoth of these API credentials must be authenticated with [basic authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication).The followi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [519, 520, 521, 522], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\n\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\n## Authentication\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://pal-test.adyen.com/pal/servlet/Recurring/v68/disable\n```\">The Recurring APIs allow you to manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Recurring API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["68"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [529], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410197, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["RecurringService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [523, 524, 525, 526, 527, 528, 530, 531, 532, 533, 534, 535], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\n\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\n## Authentication\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://pal-test.adyen.com/pal/servlet/Recurring/v68/disable\n```\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen Recurring API\nversion: 68\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: RecurringService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-02T23:15:52.596Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"68: DataRow\">68</span>", children: [518, 536, 537, 538, 539, 540], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\n\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\n## Authentication\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nRecurring API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffi..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Recurring API, version:68, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/RecurringService-v68.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:RecurringService }\nupdated: 2021-11-02T23:15:52.596Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [541], rightAlign: false, values: ["<span class=\"formatted\" title=\"68: { added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\n\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\n## Authentication\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints]..., updated:2021-11-02T23:15:52.596Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/RecurringService/68/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">68: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:RecurringService: DataRow\">adyen.com:RecurringService</span>", children: [516, 517, 542], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\npreferred: 68\nversions: { 68:{ added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Recurring APIs allow you to manage and remove your tokens or saved payment details. Tokens should be created with validation during a payment request.\n\nFor more information, refer to our [Tokenization documentation](https://docs.adyen.com/online-payments/tokenization).\n## Authentication\nTo connect to the Recurring API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U "ws@Company.YourCompany":"YourWsPassword" \\n-H "Content-Type: application/json" \\n...\n```\nNote that when going live, you need to generate new web service user cre... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-03T12:51:40.318Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [547, 548, 549, 550], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Test Cards API provides endpoints for generating custom test card numbers. For more information, refer to [Custom test cards](https://docs.adyen.com/development-resources/test-cards/create-test-cards) documentation.\">The Test Cards API provides endpoints<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Adyen Test Cards API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [557], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410198, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["TestCardService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [551, 552, 553, 554, 555, 556, 558, 559, 560, 561, 562], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Test Cards API provides endpoints for generating custom test card numbers. For more information, refer to [Custom test cards](https://docs.adyen.com/development-resources/test-cards/create-test-cards) documentation.\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Adyen Test Cards API\nversion: 1\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: TestCardService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-09T23:18:27.796Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"1: DataRow\">1</span>", children: [546, 563, 564, 565, 566, 567], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Test Cards API provides endpoints for generating custom test card numbers. For more information, refer to [Custom test cards](https://docs.adyen.com/development-resources/test-cards/create-test-cards) documentation., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Test Cards API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/TestCardService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:TestCardService }\nupdated: 2021-08-09T23:18:27.796Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [568], rightAlign: false, values: ["<span class=\"formatted\" title=\"1: { added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Test Cards API provides endpoints for generating custom test card numbers. For more information, refer to [Custom test cards](https://docs.adyen.com/development-resources/test-cards/create-test-cards) documentation., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Test Cards API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/TestCardService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:TestCardService }, updated:2021-08-09T23:18:27.796Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:TestCardService: DataRow\">adyen.com:TestCardService</span>", children: [544, 545, 569], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-03T12:51:40.318Z\npreferred: 1\nversions: { 1:{ added:2020-11-03T12:51:40.318Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Test Cards API provides endpoints for generating custom test card numbers. For more information, refer to [Custom test cards](https://docs.adyen.com/development-resources/test-cards/create-test-cards) documentation., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Adyen Test Cards API, version:1, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/TestCardService-v1.json, version:3.1 }, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:TestCardService }, updated:2021-08-09T23:18:27.796Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/TestCardService/1/op... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-03T12:51:40.318Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:40.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["developer-experience@adyen.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Adyen Developer Experience team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.help/hc/en-us/community/topics\">https://www.adyen.help/hc/en-us/commu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Adyen"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [574, 575, 576, 577], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: developer-experience@adyen.com\nname: Adyen Developer Experience team\nurl: https://www.adyen.help/hc/en-us/community/topics\nx-twitter: Adyen\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>developer-experience@<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Balance Platform Transfers API provides an endpoint that you can use to move funds within your balance platform, or to send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/transferInstruments).\n\nFor information on how the API is used in Adyen Issuing, refer to [Manage funds](https://docs.adyen.com/issuing/manage-funds#transfer).\n\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Roles and permissions\nTo use the Balance Platforms Transfers API, you need an additional role for your API credential. Transfers must also be enabled for the source balance account. Your Adyen contact will set up the roles and permissions for you.\n## Versioning\nThe Balance Platform Transfers API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://balanceplatform-api-test.adyen.com/btl/v1\n```\n## Going live\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the username and password to send requests to `https://balanceplatform-api-live.adyen.com/btl/v1`.\n\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\">The Balance Platform Transfers API pr<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.adyen.com/legal/terms-and-conditions\">https://www.adyen.com/legal/terms-and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Balance Platform Transfers API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"payment\"><span class=\"structural\">[</span>payment<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [584], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410199, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["adyen.com"] },
{ name: "<span title=\"x-publicVersion: Boolean\">x-publicVersion</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["TransferService"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [578, 579, 580, 581, 582, 583, 585, 586, 587, 588, 589, 590], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }\ndescription: The Balance Platform Transfers API provides an endpoint that you can use to move funds within your balance platform, or to send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/transferInstruments).\n\nFor information on how the API is used in Adyen Issuing, refer to [Manage funds](https://docs.adyen.com/issuing/manage-funds#transfer).\n\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Roles and permissions\nTo use the Balance Platforms Transfers API, you need an additional role for your API credential. Transfers must also be enabled for the source balance account. Your Adyen contact will set up the roles and permissions for you.\n## Versioning\nThe Balance Platform Transfers API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: "vXX", where XX is the version number.\n\nFor example:\n```\nhttps://balanceplatform-api-test.adyen.com/btl/v1\n```\n## Going live\nWhen going live, your Adyen contact will provide your API credential for the live environment. You can then use the username and password to send requests to `https://balanceplatform-api-live.adyen.com/btl/v1`.\n\nFor more information, refer to our [Going live documentation](https://docs.adyen.com/issuing/integration-checklist#going-live).\ntermsOfService: https://www.adyen.com/legal/terms-and-conditions\ntitle: Balance Platform Transfers API\nversion: 2\nx-apisguru-categories: [payment]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Ady... 3.1\n\nx-preferred: true\nx-providerName: adyen.com\nx-publicVersion: true\nx-serviceName: TransferService\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>dev<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-11-02T23:15:52.596Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.json\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.yaml\">https://api.apis.guru/v2/specs/adyen.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.1.0"] },
{ name: "<span title=\"2: DataRow\">2</span>", children: [573, 591, 592, 593, 594, 595], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\ninfo: { contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform Transfers API provides an endpoint that you can use to move funds within your balance platform, or to send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/transferInstruments).\n\nFor information on how the API is used in Adyen Issuing, refer to [Manage funds](https://docs.adyen.com/issuing/manage-funds#transfer).\n\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-H "Content-Type: application/json" \\n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \\n...\n```\n## Roles and permissions\nTo use the Balance Platforms Transfers API, you nee..., termsOfService:https://www.adyen.com/legal/terms-and-conditions, title:Balance Platform Transfers API, version:2, x-apisguru-categories:[payment], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Adyen_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/TransferService-v2.json, version:3.1 }, x-preferred:true, x-providerName:adyen.com, x-publicVersion:true, x-serviceName:TransferService }\nupdated: 2021-11-02T23:15:52.596Z\nswaggerUrl: https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.yaml\nopenapiVer: 3.1.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [596], rightAlign: false, values: ["<span class=\"formatted\" title=\"2: { added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform Transfers API provides an endpoint that you can use to move funds within your balance platform, or to send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/transferInstruments).\n\nFor information on how the API is used in Adyen Issuing, refer to [Manage funds](https://docs.adyen.com/issuing/manage-funds#transfer).\n\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl..., updated:2021-11-02T23:15:52.596Z, swaggerUrl:https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/adyen.com/TransferService/2/openapi.yaml, openapiVer:3.1.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"adyen.com:TransferService: DataRow\">adyen.com:TransferService</span>", children: [571, 572, 597], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:40.475Z\npreferred: 2\nversions: { 2:{ added:2021-11-01T23:17:40.475Z, info:{ contact:{ email:developer-experience@adyen.com, name:Adyen Developer Experience team, url:https://www.adyen.help/hc/en-us/community/topics, x-twitter:Adyen }, description:The Balance Platform Transfers API provides an endpoint that you can use to move funds within your balance platform, or to send funds from your balance platform to a [transfer instrument](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/post/transferInstruments).\n\nFor information on how the API is used in Adyen Issuing, refer to [Manage funds](https://docs.adyen.com/issuing/manage-funds#transfer).\n\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H "Content-Type: application/json" \\n-H "X-API-Key: YOUR_API_KEY" \\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic au... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:40.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-20T14:12:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-20T14:12:57.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"La estandarización de la conexión con cualquier banco en tiempo real.\">La estandarización de la conexión con<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Afterbanks API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"financial\"><span class=\"structural\">[</span>financial<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-description-language: String\">x-description-language</span>", children: [], rightAlign: false, values: ["es"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [607, 608], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410200, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["afterbanks.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [602, 603, 604, 605, 606, 609, 610, 611], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: La estandarización de la conexión con cualquier banco en tiempo real.\ntitle: Afterbanks API\nversion: 3.0.0\nx-apisguru-categories: [financial]\nx-description-language: es\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg }\nx-origin: format url version\n 0 swagger https://www.afterbanks.com/api/docume... 2.0\n\nx-providerName: afterbanks.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>La estandarizac<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.json\">https://api.apis.guru/v2/specs/afterb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/afterb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [601, 612, 613, 614, 615, 616], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-20T14:12:57.000Z\ninfo: { description:La estandarización de la conexión con cualquier banco en tiempo real., title:Afterbanks API, version:3.0.0, x-apisguru-categories:[financial], x-description-language:es, x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://www.afterbanks.com/api/documentation/es/swagger.yaml, version:2.0 }, x-providerName:afterbanks.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-20T14:12:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [617], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2017-09-20T14:12:57.000Z, info:{ description:La estandarización de la conexión con cualquier banco en tiempo real., title:Afterbanks API, version:3.0.0, x-apisguru-categories:[financial], x-description-language:es, x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://www.afterbanks.com/api/documentation/es/swagger.yaml, version:2.0 }, x-providerName:afterbanks.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-20<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"afterbanks.com: DataRow\">afterbanks.com</span>", children: [599, 600, 618], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-20T14:12:57.000Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2017-09-20T14:12:57.000Z, info:{ description:La estandarización de la conexión con cualquier banco en tiempo real., title:Afterbanks API, version:3.0.0, x-apisguru-categories:[financial], x-description-language:es, x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AfterbanksAPI_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://www.afterbanks.com/api/documentation/es/swagger.yaml, version:2.0 }, x-providerName:afterbanks.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/afterbanks.com/3.0.0/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-20T14:12:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-03T18:20:03.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-03T18:20:03.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["AGCOcorp"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [623], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: AGCOcorp\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AGCOcorp<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AGCO API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [628], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410201, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["agco-ats.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [624, 625, 626, 627, 629, 630, 631], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:AGCOcorp }\ntitle: AGCO API\nversion: v1\nx-apisguru-categories: [ecommerce]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://secure.agco-ats.com:443/swagg... 3.0\n\nx-providerName: agco-ats.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AGCO<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-09T09:15:57.964Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.json\">https://api.apis.guru/v2/specs/agco-a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.yaml\">https://api.apis.guru/v2/specs/agco-a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"v1: DataRow\">v1</span>", children: [622, 632, 633, 634, 635, 636], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-03T18:20:03.000Z\ninfo: { contact:{ x-twitter:AGCOcorp }, title:AGCO API, version:v1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://secure.agco-ats.com:443/swagger/docs/v1, version:3.0 }, x-providerName:agco-ats.com }\nupdated: 2021-08-09T09:15:57.964Z\nswaggerUrl: https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-03T18:20:03.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [637], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1: { added:2018-03-03T18:20:03.000Z, info:{ contact:{ x-twitter:AGCOcorp }, title:AGCO API, version:v1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://secure.agco-ats.com:443/swagger/docs/v1, version:3.0 }, x-providerName:agco-ats.com }, updated:2021-08-09T09:15:57.964Z, swaggerUrl:https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-03T18<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"agco-ats.com: DataRow\">agco-ats.com</span>", children: [620, 621, 638], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-03T18:20:03.000Z\npreferred: v1\nversions: { v1:{ added:2018-03-03T18:20:03.000Z, info:{ contact:{ x-twitter:AGCOcorp }, title:AGCO API, version:v1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AGCOcorp_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://secure.agco-ats.com:443/swagger/docs/v1, version:3.0 }, x-providerName:agco-ats.com }, updated:2021-08-09T09:15:57.964Z, swaggerUrl:https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/agco-ats.com/v1/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-03T18:20:03.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-26T16:02:41.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-26T16:02:41.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["AIception"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [643], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: AIception\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AIception<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Here you can play & test & prototype all the endpoints using just your browser! Go ahead!\">Here you can play & test & prototype <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AIception Interactive"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"machine_learning\"><span class=\"structural\">[</span>machine_learning<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [649], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410202, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["aiception.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [644, 645, 646, 647, 648, 650, 651, 652], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:AIception }\ndescription: Here you can play & test & prototype all the endpoints using just your browser! Go ahead!\ntitle: AIception Interactive\nversion: 1.0.0\nx-apisguru-categories: [machine_learning]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg }\nx-origin: format url version\n 0 swagger https://aiception.com/static/swagger.... 2.0\n\nx-providerName: aiception.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AIce<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-02-26T16:02:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.json\">https://api.apis.guru/v2/specs/aicept<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/aicept<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [642, 653, 654, 655, 656, 657], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-26T16:02:41.000Z\ninfo: { contact:{ x-twitter:AIception }, description:Here you can play & test & prototype all the endpoints using just your browser! Go ahead!, title:AIception Interactive, version:1.0.0, x-apisguru-categories:[machine_learning], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://aiception.com/static/swagger.json, version:2.0 }, x-providerName:aiception.com }\nupdated: 2019-02-26T16:02:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-26T16:02:41.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [658], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2019-02-26T16:02:41.000Z, info:{ contact:{ x-twitter:AIception }, description:Here you can play & test & prototype all the endpoints using just your browser! Go ahead!, title:AIception Interactive, version:1.0.0, x-apisguru-categories:[machine_learning], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://aiception.com/static/swagger.json, version:2.0 }, x-providerName:aiception.com }, updated:2019-02-26T16:02:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-26<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"aiception.com: DataRow\">aiception.com</span>", children: [640, 641, 659], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-26T16:02:41.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2019-02-26T16:02:41.000Z, info:{ contact:{ x-twitter:AIception }, description:Here you can play & test & prototype all the endpoints using just your browser! Go ahead!, title:AIception Interactive, version:1.0.0, x-apisguru-categories:[machine_learning], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AIception_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://aiception.com/static/swagger.json, version:2.0 }, x-providerName:aiception.com }, updated:2019-02-26T16:02:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aiception.com/1.0.0/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-26T16:02:41.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-18T18:44:25.146Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-18T18:44:25.146Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["contact@airbyte.io"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [664], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: contact@airbyte.io\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>contact@airbyte.io<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Airbyte Configuration API\n[https://airbyte.io](https://airbyte.io).\n\nThis API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.\n\nHere are some conventions that this API follows:\n* All endpoints are http POST methods.\n* All endpoints accept data via `application/json` request bodies. The API does not accept any data via query params.\n* The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. `localhost:8000/v1/connections/create`.\n* For all `update` methods, the whole object must be passed in, even the fields that did not change.\n\nChange Management:\n* The major version of the API endpoint can be determined / specified in the URL `localhost:8080/v1/connections/create`\n* Minor version bumps will be invisible to the end user. The user cannot specify minor versions in requests.\n* All backwards incompatible changes will happen in major version bumps. We will not make backwards incompatible changes in minor version bumps. Examples of non-breaking changes (includes but not limited to...):\n * Adding fields to request or response bodies.\n * Adding new HTTP endpoints.\n\">Airbyte Configuration API\n[https://ai<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["MIT"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://opensource.org/licenses/MIT"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [667, 668], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: MIT\nurl: https://opensource.org/licenses/MIT\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>MIT<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://opensourc<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Airbyte Configuration API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410203, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["airbyte.local"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["config"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [676], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [665, 666, 669, 670, 671, 672, 673, 674, 675, 677], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:contact@airbyte.io }\ndescription: Airbyte Configuration API\n[https://airbyte.io](https://airbyte.io).\n\nThis API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.\n\nHere are some conventions that this API follows:\n* All endpoints are http POST methods.\n* All endpoints accept data via `application/json` request bodies. The API does not accept any data via query params.\n* The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. `localhost:8000/v1/connections/create`.\n* For all `update` methods, the whole object must be passed in, even the fields that did not change.\n\nChange Management:\n* The major version of the API endpoint can be determined / specified in the URL `localhost:8080/v1/connections/create`\n* Minor version bumps will be invisible to the end user. The user cannot specify minor versions in requests.\n* All backwards incompatible changes will happen in major version bumps. We will not make backwards incompatible changes in minor version bumps. Examples of non-breaking changes (includes but not limited to...):\n * Adding fields to request or response bodies.\n * Adding new HTTP endpoints.\n\nlicense: { name:MIT, url:https://opensource.org/licenses/MIT }\ntitle: Airbyte Configuration API\nversion: 1.0.0\nx-apisguru-categories: [developer_tools]\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/air... 3.0\n\nx-providerName: airbyte.local\nx-serviceName: config\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>contact@<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Find out more about Airbyte"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://airbyte.io"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [679, 680], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Find out more about Airbyte\nurl: https://airbyte.io\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Find out more <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-02T09:20:32.823Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/airbyt<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/airbyt<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [663, 678, 681, 682, 683, 684, 685], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-18T18:44:25.146Z\ninfo: { contact:{ email:contact@airbyte.io }, description:Airbyte Configuration API\n[https://airbyte.io](https://airbyte.io).\n\nThis API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.\n\nHere are some conventions that this API follows:\n* All endpoints are http POST methods.\n* All endpoints accept data via `application/json` request bodies. The API does not accept any data via query params.\n* The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. `localhost:8000/v1/connections/create`.\n* For all `update` methods, the whole object must be passed in, even the fields that did not change.\n\nChange Management:\n* The major version of the API endpoint can be determined / specified in the URL `localhost:8080/v1/connections/create`\n* Minor version bumps will be invisible to the end user. The user cannot specify minor versions in requests.\n* All backwards incompatible changes will happen in major version bump..., license:{ name:MIT, url:https://opensource.org/licenses/MIT }, title:Airbyte Configuration API, version:1.0.0, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/airbytehq/airbyte/master/airbyte-api/src/main/openapi/config.yaml, version:3.0 }, x-providerName:airbyte.local, x-serviceName:config, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nexternalDocs: { description:Find out more about Airbyte, url:https://airbyte.io }\nupdated: 2021-08-02T09:20:32.823Z\nswaggerUrl: https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-18T18:44:25.146Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [686], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2021-02-18T18:44:25.146Z, info:{ contact:{ email:contact@airbyte.io }, description:Airbyte Configuration API\n[https://airbyte.io](https://airbyte.io).\n\nThis API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.\n\nHere are some conventions that this API follows:\n* All endpoints are http POST methods.\n* All endpoints accept data via `application/json` request bodies. The API does not accept any data via query params.\n* The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. `localhost:8000/v1/connections/create`.\n* For all `update` methods, the whole object must be passed in, even the fields that did not change.\n\nChange Management:\n* The major version of the API endpoint can be determined / specified in the URL `localhost:8080/v1/connections/create`\n* Minor version bumps will be invisible to the end user. The user cannot specify minor versions in requests.\n* Al..., externalDocs:{ description:Find out more about Airbyte, url:https://airbyte.io }, updated:2021-08-02T09:20:32.823Z, swaggerUrl:https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/airbyte.local/config/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-18<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"airbyte.local:config: DataRow\">airbyte.local:config</span>", children: [661, 662, 687], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-18T18:44:25.146Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2021-02-18T18:44:25.146Z, info:{ contact:{ email:contact@airbyte.io }, description:Airbyte Configuration API\n[https://airbyte.io](https://airbyte.io).\n\nThis API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.\n\nHere are some conventions that this API follows:\n* All endpoints are http POST methods.\n* All endpoints accept data via `application/json` request bodies. The API does not accept any data via query params.\n* The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. `localhost:8000/v1/connections/create`.\n* For all `update` methods, the whole object must be passed in, even the fields that did not change.\n\nChange Management:\n* The major version of the API endpoint can be determined / specified in the URL `localhost:8080/v1/connections/create`\n* Minor version bumps will be invisible to the end user. The user cannot sp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-18T18:44:25.146Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-26T15:09:23.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-26T15:09:23.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Get name and website-URL for airports by ICAO code. Covered airports are mostly in Germany.\">Get name and website-URL for airports<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["airportsapi"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"transport\"><span class=\"structural\">[</span>transport<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [696], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410204, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["airport-web.appspot.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [692, 693, 694, 695, 697, 698, 699], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Get name and website-URL for airports by ICAO code. Covered airports are mostly in Germany.\ntitle: airportsapi\nversion: v1\nx-apisguru-categories: [transport]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png }\nx-origin: format url version\n 0 swagger https://airport-web.appspot.com/api/d... 2.0\n\nx-providerName: airport-web.appspot.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Get name and we<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.json\">https://api.apis.guru/v2/specs/airpor<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.yaml\">https://api.apis.guru/v2/specs/airpor<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"v1: DataRow\">v1</span>", children: [691, 700, 701, 702, 703, 704], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-26T15:09:23.000Z\ninfo: { description:Get name and website-URL for airports by ICAO code. Covered airports are mostly in Germany., title:airportsapi, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png }, x-origin:[1 x 3] { format:swagger, url:https://airport-web.appspot.com/api/docs/swagger.json, version:2.0 }, x-providerName:airport-web.appspot.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-26T15:09:23.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [705], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1: { added:2017-09-26T15:09:23.000Z, info:{ description:Get name and website-URL for airports by ICAO code. Covered airports are mostly in Germany., title:airportsapi, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png }, x-origin:[1 x 3] { format:swagger, url:https://airport-web.appspot.com/api/docs/swagger.json, version:2.0 }, x-providerName:airport-web.appspot.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-26T15<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"airport-web.appspot.com: DataRow\">airport-web.appspot.com</span>", children: [689, 690, 706], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-26T15:09:23.000Z\npreferred: v1\nversions: { v1:{ added:2017-09-26T15:09:23.000Z, info:{ description:Get name and website-URL for airports by ICAO code. Covered airports are mostly in Germany., title:airportsapi, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_user-images.githubusercontent.com_21603_37955263-098e5b38-31a0-11e8-96fd-5755b16341e3.png }, x-origin:[1 x 3] { format:swagger, url:https://airport-web.appspot.com/api/docs/swagger.json, version:2.0 }, x-providerName:airport-web.appspot.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/airport-web.appspot.com/v1/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-26T15:09:23.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-30T10:47:37.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-30T10:47:37.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["akeneopim"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [711], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: akeneopim\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>akeneopim<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Akeneo PIM REST API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"enterprise\"><span class=\"structural\">[</span>enterprise<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [716], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410205, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["akeneo.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [712, 713, 714, 715, 717, 718, 719], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:akeneopim }\ntitle: Akeneo PIM REST API\nversion: 1.0.0\nx-apisguru-categories: [enterprise]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/ake... 2.0\n\nx-providerName: akeneo.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>aken<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-05T15:07:17.927Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.json\">https://api.apis.guru/v2/specs/akeneo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/akeneo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [710, 720, 721, 722, 723, 724], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-30T10:47:37.000Z\ninfo: { contact:{ x-twitter:akeneopim }, title:Akeneo PIM REST API, version:1.0.0, x-apisguru-categories:[enterprise], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/akeneo/pim-api-docs/master/content/swagger/akeneo-web-api.json, version:2.0 }, x-providerName:akeneo.com }\nupdated: 2021-07-05T15:07:17.927Z\nswaggerUrl: https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-30T10:47:37.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [725], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2019-04-30T10:47:37.000Z, info:{ contact:{ x-twitter:akeneopim }, title:Akeneo PIM REST API, version:1.0.0, x-apisguru-categories:[enterprise], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/akeneo/pim-api-docs/master/content/swagger/akeneo-web-api.json, version:2.0 }, x-providerName:akeneo.com }, updated:2021-07-05T15:07:17.927Z, swaggerUrl:https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-30<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"akeneo.com: DataRow\">akeneo.com</span>", children: [708, 709, 726], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-30T10:47:37.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2019-04-30T10:47:37.000Z, info:{ contact:{ x-twitter:akeneopim }, title:Akeneo PIM REST API, version:1.0.0, x-apisguru-categories:[enterprise], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_akeneopim_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/akeneo/pim-api-docs/master/content/swagger/akeneo-web-api.json, version:2.0 }, x-providerName:akeneo.com }, updated:2021-07-05T15:07:17.927Z, swaggerUrl:https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/akeneo.com/1.0.0/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-30T10:47:37.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-09-04T08:31:58.705Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.2.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-09-04T08:31:58.705Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"\nBefore using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization)** for more information on how to generate an access token. \n\nPlease also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York).\">\nBefore using this API, we recommend <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Flight Offers Search"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.2.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\"><span class=\"structural\">[</span>location<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410206, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amadeus.com"] },
{ name: "<span title=\"2.0.0: List<String>\">2.0.0</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Initial Version\nIncludes search and price flight offer\"><span class=\"structural\">[</span>Initial Version<span class=\"structural\">, </span>Includes search an<span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"2.1.0: List<String>\">2.1.0</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Add currencies, aircraft and carriers dictionary\"><span class=\"structural\">[</span>Add currencies, aircraft and carrie<span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"2.2.0: List<String>\">2.2.0</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Add maxPrice filtering\"><span class=\"structural\">[</span>Add maxPrice filtering<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-release-note: DataRow\">x-release-note</span>", children: [737, 738, 739], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.0.0: [Initial Version, Includes search and price flight offer]\n2.1.0: [Add currencies, aircraft and carriers dictionary]\n2.2.0: [Add maxPrice filtering]\"><span class=\"structural\">{ </span><span class=\"structural\">2.0.0: </span><span class=\"structural\">[</span>Initial Version<span class=\"structural\">, </span>In<span class=\"structural\">...</span><span class=\"structural\">]</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-status: String\">x-status</span>", children: [], rightAlign: false, values: ["validated"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"#online-retail\n#mobile-services\n#ama-for-dev\"><span class=\"structural\">[</span>#online-retail<span class=\"structural\">, </span>#mobile-services<span class=\"structural\">, </span>#<span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [743], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [731, 732, 733, 734, 735, 736, 740, 741, 742, 744], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: \nBefore using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization)** for more information on how to generate an access token. \n\nPlease also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York).\ntitle: Flight Offers Search\nversion: 2.2.0\nx-apisguru-categories: [location]\nx-origin: format url version\n 0 swagger https://developers.amadeus.com/PAS-EA... 2.0\n\nx-providerName: amadeus.com\nx-release-note: { 2.0.0:[Initial Version, Includes search and price flight offer], 2.1.0:[Add currencies, aircraft and carriers dictionary], 2.2.0:[Add maxPrice filtering] }\nx-status: validated\nx-tags: [#online-retail, #mobile-services, #ama-for-dev]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>\nBefore using t<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.json\">https://api.apis.guru/v2/specs/amadeu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.yaml\">https://api.apis.guru/v2/specs/amadeu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2.2.0: DataRow\">2.2.0</span>", children: [730, 745, 746, 747, 748, 749], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-09-04T08:31:58.705Z\ninfo: { description:\nBefore using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization)** for more information on how to generate an access token. \n\nPlease also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York)., title:Flight Offers Search, version:2.2.0, x-apisguru-categories:[location], x-origin:[1 x 3] { format:swagger, url:https://developers.amadeus.com/PAS-EAS/api/v0/documents/10181/file, version:2.0 }, x-providerName:amadeus.com, x-release-note:{ 2.0.0:[Initial Version, Includes search and price flight offer], 2.1.0:[Add currencies, aircraft and carriers dictionary], 2.2.0:[Add maxPrice filtering] }, x-status:validated, x-tags:[#online-retail, #mobile-services, #ama-for-dev], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-09-04T08:31:58.705Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [750], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.2.0: { added:2020-09-04T08:31:58.705Z, info:{ description:\nBefore using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization)** for more information on how to generate an access token. \n\nPlease also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York)., title:Flight Offers Search, version:2.2.0, x-apisguru-categories:[location], x-origin:[1 x 3] { format:swagger, url:https://developers.amadeus.com/PAS-EAS/api/v0/documents/10181/file, version:2.0 }, x-providerName:amadeus.com, x-release-note:{ 2.0.0:[Initial Version, Includes search and price flight offer], 2.1.0:[Add currencies, aircraft and carriers dictionary], 2.2.0:[Add maxPrice filtering] }, x-status:validated, x-tags:[#online-retail, #mobile-services, #ama-for-dev], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amadeus.com/2.2.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.2.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-09-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amadeus.com: DataRow\">amadeus.com</span>", children: [728, 729, 751], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-09-04T08:31:58.705Z\npreferred: 2.2.0\nversions: { 2.2.0:{ added:2020-09-04T08:31:58.705Z, info:{ description:\nBefore using this API, we recommend you read our **[Authorization Guide](https://developers.amadeus.com/self-service/apis-docs/guides/authorization)** for more information on how to generate an access token. \n\nPlease also be aware that our test environment is based on a subset of the production, if you are not returning any results try with big cities/airports like LON (London) or NYC (New-York)., title:Flight Offers Search, version:2.2.0, x-apisguru-categories:[location], x-origin:[1 x 3] { format:swagger, url:https://developers.amadeus.com/PAS-EAS/api/v0/documents/10181/file, version:2.0 }, x-providerName:amadeus.com, x-release-note:{ 2.0.0:[Initial Version, Includes search and price flight offer], 2.1.0:[Add currencies, aircraft and carriers dictionary], 2.2.0:[Add maxPrice filtering] }, x-status:validated, x-tags:[#online-retail, #mobile-services, #ama-for-dev], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.g... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-09-04T08:31:58.705Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-05-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-05-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Migration Hub"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these APIs, or a <code>HomeRegionNotSetException</code> error will be returned. Also, you must make the API calls while in your home region.</p>\"><p>The AWS Migration Hub API methods <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [760, 761], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [764, 765, 766, 767], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [769, 770], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["AWSMigrationHub"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410207, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [775], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [756, 757, 758, 759, 762, 763, 768, 771, 772, 773, 774, 776, 777, 778], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-05-31\nx-release: v4\ntitle: AWS Migration Hub\ndescription: <p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these APIs, or a <code>HomeRegionNotSetException</code> error will be returned. Also, you must make the API calls while in your home region.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: AWSMigrationHub\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-05-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mgh/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [780, 781], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mgh/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-05-31: DataRow\">2017-05-31</span>", children: [755, 779, 782, 783, 784, 785, 786], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-05-31, x-release:v4, title:AWS Migration Hub, description:<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these APIs, or a <code>HomeRegionNotSetException</code> error will be returned. Also, you must make the API calls while in your home region.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:AWSMigrationHub, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/AWSMigrationHub-2017-05-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mgh/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [787], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-05-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-05-31, x-release:v4, title:AWS Migration Hub, description:<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these APIs, or a <code>HomeRegionNotSetException</code> error will be returned. Also, you must make the API calls while in your home region.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:AWSMigrationHub, x-origin:[1 x 4] { contentType:application/j..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mgh/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/AWSMigrationHub/2017-05-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-05-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:AWSMigrationHub: DataRow\">amazonaws.com:AWSMigrationHub</span>", children: [753, 754, 788], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-05-31\nversions: { 2017-05-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-05-31, x-release:v4, title:AWS Migration Hub, description:<p>The AWS Migration Hub API methods help to obtain server and application migration status and integrate your resource-specific migration tool by providing a programmatic interface to Migration Hub.</p> <p>Remember that you must set your AWS Migration Hub home region before you call any of these APIs, or a <code>HomeRegionNotSetException</code> error will be returned. Also, you must make the API calls while in your home region.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:AWSMigrationHub, x-ori... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Access Analyzer"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An external principal can be another Amazon Web Services account, a root user, an IAM user or role, a federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to preview and validate public and cross-account access to your resources before deploying permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Identity and Access Management Access Analyzer</a> in the <b>IAM User Guide</b>.</p> <p>To start using IAM Access Analyzer, you first need to create an analyzer.</p>\"><p>Identity and Access Management Acc<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [797, 798], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [801, 802, 803, 804], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [806, 807], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["accessanalyzer"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["access-analyzer"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410208, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [813], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [793, 794, 795, 796, 799, 800, 805, 808, 809, 810, 811, 812, 814, 815, 816], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-11-01\nx-release: v4\ntitle: Access Analyzer\ndescription: <p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An external principal can be another Amazon Web Services account, a root user, an IAM user or role, a federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to preview and validate public and cross-account access to your resources before deploying permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Identity and Access Management Access Analyzer</a> in the <b>IAM User Guide</b>.</p> <p>To start using IAM Access Analyzer, you first need to create an analyzer.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: accessanalyzer\nx-aws-signingName: access-analyzer\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/access-analyzer/\">https://docs.aws.amazon.com/access-an<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [818, 819], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/access-analyzer/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-27T20:04:05.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-11-01: DataRow\">2019-11-01</span>", children: [792, 817, 820, 821, 822, 823, 824], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-11-01, x-release:v4, title:Access Analyzer, description:<p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An external principal can be another Amazon Web Services account, a root user, an IAM user or role, a federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to preview and validate public and cross-account access to your resources before deploying permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Identity and Access Management Access Analyzer</a> in the <b>IAM User Guide</b>.</p> <p>To start using IAM Acces..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:accessanalyzer, x-aws-signingName:access-analyzer, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/accessanalyzer-2019-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/access-analyzer/ }\nupdated: 2020-04-27T20:04:05.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [825], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-01, x-release:v4, title:Access Analyzer, description:<p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An external principal can be another Amazon Web Services account, a root user, an IAM user or role, a federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to preview and validate public and cross-account access to your resources before deploying permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Identity and Access Management Access Ana..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/access-analyzer/ }, updated:2020-04-27T20:04:05.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/accessanalyzer/2019-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:accessanalyzer: DataRow\">amazonaws.com:accessanalyzer</span>", children: [790, 791, 826], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-11-01\nversions: { 2019-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-01, x-release:v4, title:Access Analyzer, description:<p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An external principal can be another Amazon Web Services account, a root user, an IAM user or role, a federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to preview and validate public and cross-account access to your resources before deploying permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Id... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-12-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-12-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Certificate Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Web Services Certificate Manager</fullname> <p>You can use Amazon Web Services Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Amazon Web Services Certificate Manager User Guide</a>.</p>\"><fullname>Amazon Web Services Certifi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [835, 836], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [839, 840, 841, 842], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [844, 845], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["acm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410209, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [850], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [831, 832, 833, 834, 837, 838, 843, 846, 847, 848, 849, 851, 852, 853], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-12-08\nx-release: v4\ntitle: AWS Certificate Manager\ndescription: <fullname>Amazon Web Services Certificate Manager</fullname> <p>You can use Amazon Web Services Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Amazon Web Services Certificate Manager User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: acm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-12-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/acm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [855, 856], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/acm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-23T09:21:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-12-08: DataRow\">2015-12-08</span>", children: [830, 854, 857, 858, 859, 860, 861], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-12-08, x-release:v4, title:AWS Certificate Manager, description:<fullname>Amazon Web Services Certificate Manager</fullname> <p>You can use Amazon Web Services Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Amazon Web Services Certificate Manager User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:acm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/acm-2015-12-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/acm/ }\nupdated: 2020-03-23T09:21:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [862], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-12-08: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-08, x-release:v4, title:AWS Certificate Manager, description:<fullname>Amazon Web Services Certificate Manager</fullname> <p>You can use Amazon Web Services Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Amazon Web Services Certificate Manager User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:acm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/mast..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/acm/ }, updated:2020-03-23T09:21:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/acm/2015-12-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-12-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:acm: DataRow\">amazonaws.com:acm</span>", children: [828, 829, 863], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-12-08\nversions: { 2015-12-08:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-08, x-release:v4, title:AWS Certificate Manager, description:<fullname>Amazon Web Services Certificate Manager</fullname> <p>You can use Amazon Web Services Certificate Manager (ACM) to manage SSL/TLS certificates for your Amazon Web Services-based websites and applications. For more information about using ACM, see the <a href="https://docs.aws.amazon.com/acm/latest/userguide/">Amazon Web Services Certificate Manager User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:acm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.gi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-08-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-08-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS Certificate Manager Private Certificate Authority\">AWS Certificate Manager Private Certi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the <i>ACM Private CA API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing private certificate authorities (CA) for your organization.</p> <p>The documentation for each action shows the Query API request parameters and the XML response. Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <p>Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, ACM Private CA returns a <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/CommonErrors.html">ThrottlingException</a> error. ACM Private CA does not guarantee a minimum request rate for APIs. </p> <p>To see an up-to-date list of your ACM Private CA quotas, or to request a quota increase, log into your AWS account and visit the <a href="https://console.aws.amazon.com/servicequotas/">Service Quotas</a> console.</p>\"><p>This is the <i>ACM Private CA API <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [872, 873], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [876, 877, 878, 879], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [881, 882], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["acm-pca"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410210, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [887], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [868, 869, 870, 871, 874, 875, 880, 883, 884, 885, 886, 888, 889, 890], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-08-22\nx-release: v4\ntitle: AWS Certificate Manager Private Certificate Authority\ndescription: <p>This is the <i>ACM Private CA API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing private certificate authorities (CA) for your organization.</p> <p>The documentation for each action shows the Query API request parameters and the XML response. Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <p>Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, ACM Private CA returns a <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/CommonErrors.html">ThrottlingException</a> error. ACM Private CA does not guarantee a minimum request rate for APIs. </p> <p>To see an up-to-date list of your ACM Private CA quotas, or to request a quota increase, log into your AWS account and visit the <a href="https://console.aws.amazon.com/servicequotas/">Service Quotas</a> console.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: acm-pca\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-08-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/acm-pca/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [892, 893], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/acm-pca/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-08-22: DataRow\">2017-08-22</span>", children: [867, 891, 894, 895, 896, 897, 898], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-08-22, x-release:v4, title:AWS Certificate Manager Private Certificate Authority, description:<p>This is the <i>ACM Private CA API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing private certificate authorities (CA) for your organization.</p> <p>The documentation for each action shows the Query API request parameters and the XML response. Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <p>Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, ACM Private CA returns a <a h..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:acm-pca, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/acm-pca-2017-08-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/acm-pca/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [899], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-08-22: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-22, x-release:v4, title:AWS Certificate Manager Private Certificate Authority, description:<p>This is the <i>ACM Private CA API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing private certificate authorities (CA) for your organization.</p> <p>The documentation for each action shows the Query API request parameters and the XML response. Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <p>Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request because the request exceeds the operat..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/acm-pca/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/acm-pca/2017-08-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-08-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:acm-pca: DataRow\">amazonaws.com:acm-pca</span>", children: [865, 866, 900], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-08-22\nversions: { 2017-08-22:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-22, x-release:v4, title:AWS Certificate Manager Private Certificate Authority, description:<p>This is the <i>ACM Private CA API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing private certificate authorities (CA) for your organization.</p> <p>The documentation for each action shows the Query API request parameters and the XML response. Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <p>Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-09"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-09"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Alexa For Business"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Alexa for Business helps you use Alexa in your organization. Alexa for Business provides you with the tools to manage Alexa devices, enroll your users, and assign skills, at scale. You can build your own context-aware voice skills using the Alexa Skills Kit and the Alexa for Business API operations. You can also make these available as private skills for your organization. Alexa for Business makes it efficient to voice-enable your products and services, thus providing context-aware voice experiences for your customers. Device makers building with the Alexa Voice Service (AVS) can create fully integrated solutions, register their products with Alexa for Business, and manage them as shared devices in their organization. \">Alexa for Business helps you use Alex<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [909, 910], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [913, 914, 915, 916], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [918, 919], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["alexaforbusiness"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410211, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [924], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [905, 906, 907, 908, 911, 912, 917, 920, 921, 922, 923, 925, 926, 927], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-09\nx-release: v4\ntitle: Alexa For Business\ndescription: Alexa for Business helps you use Alexa in your organization. Alexa for Business provides you with the tools to manage Alexa devices, enroll your users, and assign skills, at scale. You can build your own context-aware voice skills using the Alexa Skills Kit and the Alexa for Business API operations. You can also make these available as private skills for your organization. Alexa for Business makes it efficient to voice-enable your products and services, thus providing context-aware voice experiences for your customers. Device makers building with the Alexa Voice Service (AVS) can create fully integrated solutions, register their products with Alexa for Business, and manage them as shared devices in their organization. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: alexaforbusiness\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-09<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/a4b/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [929, 930], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/a4b/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-09: DataRow\">2017-11-09</span>", children: [904, 928, 931, 932, 933, 934, 935], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-09, x-release:v4, title:Alexa For Business, description:Alexa for Business helps you use Alexa in your organization. Alexa for Business provides you with the tools to manage Alexa devices, enroll your users, and assign skills, at scale. You can build your own context-aware voice skills using the Alexa Skills Kit and the Alexa for Business API operations. You can also make these available as private skills for your organization. Alexa for Business makes it efficient to voice-enable your products and services, thus providing context-aware voice experiences for your customers. Device makers building with the Alexa Voice Service (AVS) can create fully integrated solutions, register their products with Alexa for Business, and manage them as shared devices in their organization. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:alexaforbusiness, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/alexaforbusiness-2017-11-09.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/a4b/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [936], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-09: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-09, x-release:v4, title:Alexa For Business, description:Alexa for Business helps you use Alexa in your organization. Alexa for Business provides you with the tools to manage Alexa devices, enroll your users, and assign skills, at scale. You can build your own context-aware voice skills using the Alexa Skills Kit and the Alexa for Business API operations. You can also make these available as private skills for your organization. Alexa for Business makes it efficient to voice-enable your products and services, thus providing context-aware voice experiences for your customers. Device makers building with the Alexa Voice Service (AVS) can create fully integrated solutions, register their products with Alexa for Business, and manage them as shared devices in their organization. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/a4b/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/alexaforbusiness/2017-11-09/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-09: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:alexaforbusiness: DataRow\">amazonaws.com:alexaforbusiness</span>", children: [902, 903, 937], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-09\nversions: { 2017-11-09:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-09, x-release:v4, title:Alexa For Business, description:Alexa for Business helps you use Alexa in your organization. Alexa for Business provides you with the tools to manage Alexa devices, enroll your users, and assign skills, at scale. You can build your own context-aware voice skills using the Alexa Skills Kit and the Alexa for Business API operations. You can also make these available as private skills for your organization. Alexa for Business makes it efficient to voice-enable your products and services, thus providing context-aware voice experiences for your customers. Device makers building with the Alexa Voice Service (AVS) can create fully integrated solutions, register their products with Alexa for Business, and manage them as shared devices in their organization. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Prometheus Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Managed Service for Prometheus"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [946, 947], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [950, 951, 952, 953], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [955, 956], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["amp"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["aps"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410212, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [962], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [942, 943, 944, 945, 948, 949, 954, 957, 958, 959, 960, 961, 963, 964, 965], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-01\nx-release: v4\ntitle: Amazon Prometheus Service\ndescription: Amazon Managed Service for Prometheus\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: amp\nx-aws-signingName: aps\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/aps/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [967, 968], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/aps/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-01: DataRow\">2020-08-01</span>", children: [941, 966, 969, 970, 971, 972], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-08-01, x-release:v4, title:Amazon Prometheus Service, description:Amazon Managed Service for Prometheus, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amp, x-aws-signingName:aps, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amp-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/aps/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [973], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-01, x-release:v4, title:Amazon Prometheus Service, description:Amazon Managed Service for Prometheus, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amp, x-aws-signingName:aps, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amp-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/aps/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/amp/2020-08-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:amp: DataRow\">amazonaws.com:amp</span>", children: [939, 940, 974], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-08-01\nversions: { 2020-08-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-01, x-release:v4, title:Amazon Prometheus Service, description:Amazon Managed Service for Prometheus, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amp, x-aws-signingName:aps, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amp-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[clou... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Amplify"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amplify enables developers to develop and deploy cloud-powered mobile and web apps. The Amplify Console provides a continuous delivery and hosting service for web applications. For more information, see the <a href="https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html">Amplify Console User Guide</a>. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the <a href="https://docs.amplify.aws/">Amplify Framework.</a> \">Amplify enables developers to develop<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [983, 984], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [987, 988, 989, 990], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [992, 993], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["amplify"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["amplify"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410213, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [999], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [979, 980, 981, 982, 985, 986, 991, 994, 995, 996, 997, 998, 1000, 1001, 1002], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: AWS Amplify\ndescription: Amplify enables developers to develop and deploy cloud-powered mobile and web apps. The Amplify Console provides a continuous delivery and hosting service for web applications. For more information, see the <a href="https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html">Amplify Console User Guide</a>. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the <a href="https://docs.amplify.aws/">Amplify Framework.</a> \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: amplify\nx-aws-signingName: amplify\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/amplify/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1004, 1005], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/amplify/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [978, 1003, 1006, 1007, 1008, 1009, 1010], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-25, x-release:v4, title:AWS Amplify, description:Amplify enables developers to develop and deploy cloud-powered mobile and web apps. The Amplify Console provides a continuous delivery and hosting service for web applications. For more information, see the <a href="https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html">Amplify Console User Guide</a>. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the <a href="https://docs.amplify.aws/">Amplify Framework.</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amplify, x-aws-signingName:amplify, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amplify-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/amplify/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1011], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS Amplify, description:Amplify enables developers to develop and deploy cloud-powered mobile and web apps. The Amplify Console provides a continuous delivery and hosting service for web applications. For more information, see the <a href="https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html">Amplify Console User Guide</a>. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the <a href="https://docs.amplify.aws/">Amplify Framework.</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/amplify/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/amplify/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:amplify: DataRow\">amazonaws.com:amplify</span>", children: [976, 977, 1012], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS Amplify, description:Amplify enables developers to develop and deploy cloud-powered mobile and web apps. The Amplify Console provides a continuous delivery and hosting service for web applications. For more information, see the <a href="https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html">Amplify Console User Guide</a>. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the <a href="https://docs.amplify.aws/">Amplify Framework.</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-11"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-11"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmplifyBackend"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS Amplify Admin API"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1021, 1022], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1025, 1026, 1027, 1028], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1030, 1031], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["amplifybackend"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["amplifybackend"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410214, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1037], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1017, 1018, 1019, 1020, 1023, 1024, 1029, 1032, 1033, 1034, 1035, 1036, 1038, 1039, 1040], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-11\nx-release: v4\ntitle: AmplifyBackend\ndescription: AWS Amplify Admin API\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: amplifybackend\nx-aws-signingName: amplifybackend\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-11<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/amplifybackend/\">https://docs.aws.amazon.com/amplifyba<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1042, 1043], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/amplifybackend/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-11: DataRow\">2020-08-11</span>", children: [1016, 1041, 1044, 1045, 1046, 1047], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-08-11, x-release:v4, title:AmplifyBackend, description:AWS Amplify Admin API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amplifybackend, x-aws-signingName:amplifybackend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amplifybackend-2020-08-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/amplifybackend/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1048], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-11: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-11, x-release:v4, title:AmplifyBackend, description:AWS Amplify Admin API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amplifybackend, x-aws-signingName:amplifybackend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amplifybackend-2020-08-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/amplifybackend/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/amplifybackend/2020-08-11/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-11: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:amplifybackend: DataRow\">amazonaws.com:amplifybackend</span>", children: [1014, 1015, 1049], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-08-11\nversions: { 2020-08-11:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-11, x-release:v4, title:AmplifyBackend, description:AWS Amplify Admin API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:amplifybackend, x-aws-signingName:amplifybackend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/amplifybackend-2020-08-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-07-09"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-07-09"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon API Gateway"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon API Gateway</fullname> <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>\"><fullname>Amazon API Gateway</fullnam<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1058, 1059], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1062, 1063, 1064, 1065], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1067, 1068], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apigateway"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410215, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1073], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1054, 1055, 1056, 1057, 1060, 1061, 1066, 1069, 1070, 1071, 1072, 1074, 1075, 1076], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-07-09\nx-release: v4\ntitle: Amazon API Gateway\ndescription: <fullname>Amazon API Gateway</fullname> <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: apigateway\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-07-09<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/apigateway/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1078, 1079], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/apigateway/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-04T20:09:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-07-09: DataRow\">2015-07-09</span>", children: [1053, 1077, 1080, 1081, 1082, 1083, 1084], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-07-09, x-release:v4, title:Amazon API Gateway, description:<fullname>Amazon API Gateway</fullname> <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigateway-2015-07-09.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apigateway/ }\nupdated: 2020-05-04T20:09:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1085], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-07-09: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-09, x-release:v4, title:Amazon API Gateway, description:<fullname>Amazon API Gateway</fullname> <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigateway-2015-..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apigateway/ }, updated:2020-05-04T20:09:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigateway/2015-07-09/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-07-09: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:apigateway: DataRow\">amazonaws.com:apigateway</span>", children: [1051, 1052, 1086], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-07-09\nversions: { 2015-07-09:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-09, x-release:v4, title:Amazon API Gateway, description:<fullname>Amazon API Gateway</fullname> <p>Amazon API Gateway helps developers deliver robust, secure, and scalable mobile and web application back ends. API Gateway allows developers to securely connect mobile and web applications to APIs that run on AWS Lambda, Amazon EC2, or other publicly addressable web services that are hosted outside of AWS.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-12-18T23:56:32.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-12-18T23:56:32.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmazonApiGatewayManagementApi"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.\">The Amazon API Gateway Management API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1095, 1096], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1099, 1100, 1101, 1102], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1104, 1105], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apigatewaymanagementapi"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["execute-api"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410216, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1111], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1091, 1092, 1093, 1094, 1097, 1098, 1103, 1106, 1107, 1108, 1109, 1110, 1112, 1113, 1114], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-29\nx-release: v4\ntitle: AmazonApiGatewayManagementApi\ndescription: The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: apigatewaymanagementapi\nx-aws-signingName: execute-api\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/execute-api/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1116, 1117], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/execute-api/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-29: DataRow\">2018-11-29</span>", children: [1090, 1115, 1118, 1119, 1120, 1121, 1122], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-12-18T23:56:32.000Z\ninfo: { version:2018-11-29, x-release:v4, title:AmazonApiGatewayManagementApi, description:The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewaymanagementapi, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigatewaymanagementapi-2018-11-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/execute-api/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-12-18T23:56:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1123], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-29: { added:2018-12-18T23:56:32.000Z, info:{ version:2018-11-29, x-release:v4, title:AmazonApiGatewayManagementApi, description:The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewaymanagementapi, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/execute-api/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigatewaymanagementapi/2018-11-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:apigatewaymanagementapi: DataRow\">amazonaws.com:apigatewaymanagementapi</span>", children: [1088, 1089, 1124], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-12-18T23:56:32.000Z\npreferred: 2018-11-29\nversions: { 2018-11-29:{ added:2018-12-18T23:56:32.000Z, info:{ version:2018-11-29, x-release:v4, title:AmazonApiGatewayManagementApi, description:The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewaymanagementapi, x-aws-signingName:execut... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-12-18T23:56:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmazonApiGatewayV2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon API Gateway V2"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1133, 1134], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1137, 1138, 1139, 1140], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1142, 1143], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apigatewayv2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["apigateway"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410217, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1149], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1129, 1130, 1131, 1132, 1135, 1136, 1141, 1144, 1145, 1146, 1147, 1148, 1150, 1151, 1152], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-29\nx-release: v4\ntitle: AmazonApiGatewayV2\ndescription: Amazon API Gateway V2\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: apigatewayv2\nx-aws-signingName: apigateway\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/apigateway/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1154, 1155], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/apigateway/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T06:33:24.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-29: DataRow\">2018-11-29</span>", children: [1128, 1153, 1156, 1157, 1158, 1159, 1160], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-29, x-release:v4, title:AmazonApiGatewayV2, description:Amazon API Gateway V2, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewayv2, x-aws-signingName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigatewayv2-2018-11-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apigateway/ }\nupdated: 2020-04-21T06:33:24.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1161], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-29, x-release:v4, title:AmazonApiGatewayV2, description:Amazon API Gateway V2, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewayv2, x-aws-signingName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigatewayv2-2018-11-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apigateway/ }, updated:2020-04-21T06:33:24.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/apigatewayv2/2018-11-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:apigatewayv2: DataRow\">amazonaws.com:apigatewayv2</span>", children: [1126, 1127, 1162], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-29\nversions: { 2018-11-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-29, x-release:v4, title:AmazonApiGatewayV2, description:Amazon API Gateway V2, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apigatewayv2, x-aws-signingName:apigateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apigatewayv2-2018-11-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cl... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-10-09"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-10-09"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon AppConfig"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS AppConfig</fullname> <p>Use AWS AppConfig, a capability of AWS Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT devices.</p> <p>To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or a Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.</p> <p>During a configuration deployment, AppConfig monitors the application to ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the change to minimize impact for your application users. You can configure a deployment strategy for each application or environment that includes deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back to the previous version. </p> <p>AppConfig supports multiple use cases. Here are some examples.</p> <ul> <li> <p> <b>Application tuning</b>: Use AppConfig to carefully introduce changes to your application that can only be tested with production traffic.</p> </li> <li> <p> <b>Feature toggle</b>: Use AppConfig to turn on new features that require a timely deployment, such as a product launch or announcement. </p> </li> <li> <p> <b>Allow list</b>: Use AppConfig to allow premium subscribers to access paid content. </p> </li> <li> <p> <b>Operational issues</b>: Use AppConfig to reduce stress on your application when a dependency or other external factor impacts the system.</p> </li> </ul> <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig.html">AWS AppConfig User Guide</a>.</p>\"><fullname>AWS AppConfig</fullname> <p<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1171, 1172], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1175, 1176, 1177, 1178], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1180, 1181], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appconfig"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["appconfig"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410218, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1187], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1167, 1168, 1169, 1170, 1173, 1174, 1179, 1182, 1183, 1184, 1185, 1186, 1188, 1189, 1190], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-10-09\nx-release: v4\ntitle: Amazon AppConfig\ndescription: <fullname>AWS AppConfig</fullname> <p>Use AWS AppConfig, a capability of AWS Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT devices.</p> <p>To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or a Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.</p> <p>During a configuration deployment, AppConfig monitors the application to ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the change to minimize impact for your application users. You can configure a deployment strategy for each application or environment that includes deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back to the previous version. </p> <p>AppConfig supports multiple use cases. Here are some examples.</p> <ul> <li> <p> <b>Application tuning</b>: Use AppConfig to carefully introduce changes to your application that can only be tested with production traffic.</p> </li> <li> <p> <b>Feature toggle</b>: Use AppConfig to turn on new features that require a timely deployment, such as a product launch or announcement. </p> </li> <li> <p> <b>Allow list</b>: Use AppConfig to allow premium subscribers to access paid content. </p> </li> <li> <p> <b>Operational issues</b>: Use AppConfig to reduce stress on your application when a dependency or other external factor impacts the system.</p> </li> </ul> <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig.html">AWS AppConfig User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appconfig\nx-aws-signingName: appconfig\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-10-09<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/appconfig/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1192, 1193], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/appconfig/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-10-09: DataRow\">2019-10-09</span>", children: [1166, 1191, 1194, 1195, 1196, 1197, 1198], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-10-09, x-release:v4, title:Amazon AppConfig, description:<fullname>AWS AppConfig</fullname> <p>Use AWS AppConfig, a capability of AWS Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT devices.</p> <p>To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or a Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the configuration data is valid.</p> <p>During a configuration deployment, AppCo..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appconfig, x-aws-signingName:appconfig, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appconfig-2019-10-09.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appconfig/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1199], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-10-09: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-10-09, x-release:v4, title:Amazon AppConfig, description:<fullname>AWS AppConfig</fullname> <p>Use AWS AppConfig, a capability of AWS Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT devices.</p> <p>To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or a Lambda function that runs against the configuration. The configuration deployment or update can only proceed when the conf..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appconfig/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appconfig/2019-10-09/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-10-09: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appconfig: DataRow\">amazonaws.com:appconfig</span>", children: [1164, 1165, 1200], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-10-09\nversions: { 2019-10-09:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-10-09, x-release:v4, title:Amazon AppConfig, description:<fullname>AWS AppConfig</fullname> <p>Use AWS AppConfig, a capability of AWS Systems Manager, to create, manage, and quickly deploy application configurations. AppConfig supports controlled deployments to applications of any size and includes built-in validation checks and monitoring. You can use AppConfig with applications hosted on Amazon EC2 instances, AWS Lambda, containers, mobile applications, or IoT devices.</p> <p>To prevent errors when deploying application configurations, especially for production systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application configuration data, you provide a schema or a Lambda function that runs against the configuration. The configuration deployment o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Appflow"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors. </p> <p>Amazon AppFlow is a fully managed integration service that enables you to securely transfer data between software as a service (SaaS) applications like Salesforce, Marketo, Slack, and ServiceNow, and Amazon Web Services like Amazon S3 and Amazon Redshift. </p> <p>Use the following links to get started on the Amazon AppFlow API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Amazon AppFlow API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Amazon AppFlow data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/CommonParameters.html">Common parameters</a>: Parameters that all Query operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul> <p>If you're new to Amazon AppFlow, we recommend that you review the <a href="https://docs.aws.amazon.com/appflow/latest/userguide/what-is-appflow.html">Amazon AppFlow User Guide</a>.</p> <p>Amazon AppFlow API users can use vendor-specific mechanisms for OAuth, and include applicable OAuth attributes (such as <code>auth-code</code> and <code>redirecturi</code>) with the connector-specific <code>ConnectorProfileProperties</code> when creating a new connector profile using Amazon AppFlow API operations. For example, Salesforce users can refer to the <a href="https://help.salesforce.com/articleView?id=remoteaccess_authenticate.htm"> <i>Authorize Apps with OAuth</i> </a> documentation.</p>\"><p>Welcome to the Amazon AppFlow API <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1209, 1210], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1213, 1214, 1215, 1216], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1218, 1219], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appflow"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["appflow"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410219, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1225], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1205, 1206, 1207, 1208, 1211, 1212, 1217, 1220, 1221, 1222, 1223, 1224, 1226, 1227, 1228], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-23\nx-release: v4\ntitle: Amazon Appflow\ndescription: <p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors. </p> <p>Amazon AppFlow is a fully managed integration service that enables you to securely transfer data between software as a service (SaaS) applications like Salesforce, Marketo, Slack, and ServiceNow, and Amazon Web Services like Amazon S3 and Amazon Redshift. </p> <p>Use the following links to get started on the Amazon AppFlow API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Amazon AppFlow API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Amazon AppFlow data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/CommonParameters.html">Common parameters</a>: Parameters that all Query operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul> <p>If you're new to Amazon AppFlow, we recommend that you review the <a href="https://docs.aws.amazon.com/appflow/latest/userguide/what-is-appflow.html">Amazon AppFlow User Guide</a>.</p> <p>Amazon AppFlow API users can use vendor-specific mechanisms for OAuth, and include applicable OAuth attributes (such as <code>auth-code</code> and <code>redirecturi</code>) with the connector-specific <code>ConnectorProfileProperties</code> when creating a new connector profile using Amazon AppFlow API operations. For example, Salesforce users can refer to the <a href="https://help.salesforce.com/articleView?id=remoteaccess_authenticate.htm"> <i>Authorize Apps with OAuth</i> </a> documentation.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appflow\nx-aws-signingName: appflow\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/appflow/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1230, 1231], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/appflow/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-23: DataRow\">2020-08-23</span>", children: [1204, 1229, 1232, 1233, 1234, 1235], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-08-23, x-release:v4, title:Amazon Appflow, description:<p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors. </p> <p>Amazon AppFlow is a fully managed integration service that enables you to securely transfer data between software as a service (SaaS) applications like Salesforce, Marketo, Slack, and ServiceNow, and Amazon Web Services like Amazon S3 and Amazon Redshift. </p> <p>Use the following links to get started on the Amazon AppFlow API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Amazon AppFlow API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Amazon AppFlow data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/CommonParameters.html">Common parameters</a>: Parameters that all..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appflow, x-aws-signingName:appflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appflow-2020-08-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appflow/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1236], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-23: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-23, x-release:v4, title:Amazon Appflow, description:<p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors. </p> <p>Amazon AppFlow is a fully managed integration service that enables you to securely transfer data between software as a service (SaaS) applications like Salesforce, Marketo, Slack, and ServiceNow, and Amazon Web Services like Amazon S3 and Amazon Redshift. </p> <p>Use the following links to get started on the Amazon AppFlow API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Amazon AppFlow API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Amazon AppFlow data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIRefer..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appflow/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appflow/2020-08-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appflow: DataRow\">amazonaws.com:appflow</span>", children: [1202, 1203, 1237], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-08-23\nversions: { 2020-08-23:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-23, x-release:v4, title:Amazon Appflow, description:<p>Welcome to the Amazon AppFlow API reference. This guide is for developers who need detailed information about the Amazon AppFlow API operations, data types, and errors. </p> <p>Amazon AppFlow is a fully managed integration service that enables you to securely transfer data between software as a service (SaaS) applications like Salesforce, Marketo, Slack, and ServiceNow, and Amazon Web Services like Amazon S3 and Amazon Redshift. </p> <p>Use the following links to get started on the Amazon AppFlow API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Amazon AppFlow API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/appflow/1.0/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Amazon AppFlow data types.</p> </li> <li> <p> <a href="https://d... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon AppIntegrations Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built integrations</a> in the <i>Amazon Connect Administrator Guide</i>.</p>\"><p>The Amazon AppIntegrations service<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1246, 1247], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1250, 1251, 1252, 1253], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1255, 1256], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appintegrations"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["app-integrations"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410220, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1262], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1242, 1243, 1244, 1245, 1248, 1249, 1254, 1257, 1258, 1259, 1260, 1261, 1263, 1264, 1265], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-29\nx-release: v4\ntitle: Amazon AppIntegrations Service\ndescription: <p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built integrations</a> in the <i>Amazon Connect Administrator Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appintegrations\nx-aws-signingName: app-integrations\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/app-integrations/\">https://docs.aws.amazon.com/app-integ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1267, 1268], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/app-integrations/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-29: DataRow\">2020-07-29</span>", children: [1241, 1266, 1269, 1270, 1271, 1272], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-07-29, x-release:v4, title:Amazon AppIntegrations Service, description:<p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built integrations</a> in the <i>Amazon Connect Administrator Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appintegrations, x-aws-signingName:app-integrations, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appintegrations-2020-07-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/app-integrations/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1273], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-29: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-29, x-release:v4, title:Amazon AppIntegrations Service, description:<p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built integrations</a> in the <i>Amazon Connect Administrator Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appintegrations, x-aws-signingName:app-integrations, x-origin:[1 x 4] { contentType:application/json, url:https://raw.git..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/app-integrations/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appintegrations/2020-07-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appintegrations: DataRow\">amazonaws.com:appintegrations</span>", children: [1239, 1240, 1274], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-07-29\nversions: { 2020-07-29:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-29, x-release:v4, title:Amazon AppIntegrations Service, description:<p>The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.</p> <p>For information about how you can use external applications with Amazon Connect, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/crm.html">Set up pre-built integrations</a> in the <i>Amazon Connect Administrator Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appintegrations, x-aws-signingName:app-integrations, x-origin:[1 x 4] { contentTyp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-02-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-02-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Application Auto Scaling"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>With Application Auto Scaling, you can configure automatic scaling for the following resources:</p> <ul> <li> <p>Amazon AppStream 2.0 fleets</p> </li> <li> <p>Amazon Aurora Replicas</p> </li> <li> <p>Amazon Comprehend document classification and entity recognizer endpoints</p> </li> <li> <p>Amazon DynamoDB tables and global secondary indexes throughput capacity</p> </li> <li> <p>Amazon ECS services</p> </li> <li> <p>Amazon ElastiCache for Redis clusters (replication groups)</p> </li> <li> <p>Amazon EMR clusters</p> </li> <li> <p>Amazon Keyspaces (for Apache Cassandra) tables</p> </li> <li> <p>Lambda function provisioned concurrency</p> </li> <li> <p>Amazon Managed Streaming for Apache Kafka broker storage</p> </li> <li> <p>Amazon SageMaker endpoint variants</p> </li> <li> <p>Spot Fleet (Amazon EC2) requests</p> </li> <li> <p>Custom resources provided by your own applications or services</p> </li> </ul> <p> <b>API Summary</b> </p> <p>The Application Auto Scaling service API includes three key sets of actions: </p> <ul> <li> <p>Register and manage scalable targets - Register Amazon Web Services or custom resources as scalable targets (a resource that Application Auto Scaling can scale), set minimum and maximum capacity limits, and retrieve information on existing scalable targets.</p> </li> <li> <p>Configure and manage automatic scaling - Define scaling policies to dynamically scale your resources in response to CloudWatch alarms, schedule one-time or recurring scaling actions, and retrieve your recent scaling activity history.</p> </li> <li> <p>Suspend and resume scaling - Temporarily suspend and later resume automatic scaling by calling the <a href="https://docs.aws.amazon.com/autoscaling/application/APIReference/API_RegisterScalableTarget.html">RegisterScalableTarget</a> API action for any Application Auto Scaling scalable target. You can suspend and resume (individually or in combination) scale-out activities that are triggered by a scaling policy, scale-in activities that are triggered by a scaling policy, and scheduled scaling.</p> </li> </ul> <p>To learn more about Application Auto Scaling, including information about granting IAM users required permissions for Application Auto Scaling actions, see the <a href="https://docs.aws.amazon.com/autoscaling/application/userguide/what-is-application-auto-scaling.html">Application Auto Scaling User Guide</a>.</p>\"><p>With Application Auto Scaling, you<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1283, 1284], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1287, 1288, 1289, 1290], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1292, 1293], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["application-autoscaling"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["application-autoscaling"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410221, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1299], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1279, 1280, 1281, 1282, 1285, 1286, 1291, 1294, 1295, 1296, 1297, 1298, 1300, 1301, 1302], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-02-06\nx-release: v4\ntitle: Application Auto Scaling\ndescription: <p>With Application Auto Scaling, you can configure automatic scaling for the following resources:</p> <ul> <li> <p>Amazon AppStream 2.0 fleets</p> </li> <li> <p>Amazon Aurora Replicas</p> </li> <li> <p>Amazon Comprehend document classification and entity recognizer endpoints</p> </li> <li> <p>Amazon DynamoDB tables and global secondary indexes throughput capacity</p> </li> <li> <p>Amazon ECS services</p> </li> <li> <p>Amazon ElastiCache for Redis clusters (replication groups)</p> </li> <li> <p>Amazon EMR clusters</p> </li> <li> <p>Amazon Keyspaces (for Apache Cassandra) tables</p> </li> <li> <p>Lambda function provisioned concurrency</p> </li> <li> <p>Amazon Managed Streaming for Apache Kafka broker storage</p> </li> <li> <p>Amazon SageMaker endpoint variants</p> </li> <li> <p>Spot Fleet (Amazon EC2) requests</p> </li> <li> <p>Custom resources provided by your own applications or services</p> </li> </ul> <p> <b>API Summary</b> </p> <p>The Application Auto Scaling service API includes three key sets of actions: </p> <ul> <li> <p>Register and manage scalable targets - Register Amazon Web Services or custom resources as scalable targets (a resource that Application Auto Scaling can scale), set minimum and maximum capacity limits, and retrieve information on existing scalable targets.</p> </li> <li> <p>Configure and manage automatic scaling - Define scaling policies to dynamically scale your resources in response to CloudWatch alarms, schedule one-time or recurring scaling actions, and retrieve your recent scaling activity history.</p> </li> <li> <p>Suspend and resume scaling - Temporarily suspend and later resume automatic scaling by calling the <a href="https://docs.aws.amazon.com/autoscaling/application/APIReference/API_RegisterScalableTarget.html">RegisterScalableTarget</a> API action for any Application Auto Scaling scalable target. You can suspend and resume (individually or in combination) scale-out activities that are triggered by a scaling policy, scale-in activities that are triggered by a scaling policy, and scheduled scaling.</p> </li> </ul> <p>To learn more about Application Auto Scaling, including information about granting IAM users required permissions for Application Auto Scaling actions, see the <a href="https://docs.aws.amazon.com/autoscaling/application/userguide/what-is-application-auto-scaling.html">Application Auto Scaling User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: application-autoscaling\nx-aws-signingName: application-autoscaling\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-02-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/application-autoscaling/\">https://docs.aws.amazon.com/applicati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1304, 1305], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/application-autoscaling/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-02-06: DataRow\">2016-02-06</span>", children: [1278, 1303, 1306, 1307, 1308, 1309, 1310], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-02-06, x-release:v4, title:Application Auto Scaling, description:<p>With Application Auto Scaling, you can configure automatic scaling for the following resources:</p> <ul> <li> <p>Amazon AppStream 2.0 fleets</p> </li> <li> <p>Amazon Aurora Replicas</p> </li> <li> <p>Amazon Comprehend document classification and entity recognizer endpoints</p> </li> <li> <p>Amazon DynamoDB tables and global secondary indexes throughput capacity</p> </li> <li> <p>Amazon ECS services</p> </li> <li> <p>Amazon ElastiCache for Redis clusters (replication groups)</p> </li> <li> <p>Amazon EMR clusters</p> </li> <li> <p>Amazon Keyspaces (for Apache Cassandra) tables</p> </li> <li> <p>Lambda function provisioned concurrency</p> </li> <li> <p>Amazon Managed Streaming for Apache Kafka broker storage</p> </li> <li> <p>Amazon SageMaker endpoint variants</p> </li> <li> <p>Spot Fleet (Amazon EC2) requests</p> </li> <li> <p>Custom resources provided by your own applications or services</p> </li> </ul> <p> <b>API Summary</b> </p> <p>The Application Auto Scaling service API includ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:application-autoscaling, x-aws-signingName:application-autoscaling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/application-autoscaling-2016-02-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/application-autoscaling/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1311], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-02-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-02-06, x-release:v4, title:Application Auto Scaling, description:<p>With Application Auto Scaling, you can configure automatic scaling for the following resources:</p> <ul> <li> <p>Amazon AppStream 2.0 fleets</p> </li> <li> <p>Amazon Aurora Replicas</p> </li> <li> <p>Amazon Comprehend document classification and entity recognizer endpoints</p> </li> <li> <p>Amazon DynamoDB tables and global secondary indexes throughput capacity</p> </li> <li> <p>Amazon ECS services</p> </li> <li> <p>Amazon ElastiCache for Redis clusters (replication groups)</p> </li> <li> <p>Amazon EMR clusters</p> </li> <li> <p>Amazon Keyspaces (for Apache Cassandra) tables</p> </li> <li> <p>Lambda function provisioned concurrency</p> </li> <li> <p>Amazon Managed Streaming for Apache Kafka broker storage</p> </li> <li> <p>Amazon SageMaker endpoint variants</p> </li> <li> <p>Spot Fleet (Amazon EC2) requests</p> </li> <li> <p>Custom resources provided by your own applications or services</p> </li> </ul..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/application-autoscaling/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/application-autoscaling/2016-02-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-02-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:application-autoscaling: DataRow\">amazonaws.com:application-autoscaling</span>", children: [1276, 1277, 1312], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-02-06\nversions: { 2016-02-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-02-06, x-release:v4, title:Application Auto Scaling, description:<p>With Application Auto Scaling, you can configure automatic scaling for the following resources:</p> <ul> <li> <p>Amazon AppStream 2.0 fleets</p> </li> <li> <p>Amazon Aurora Replicas</p> </li> <li> <p>Amazon Comprehend document classification and entity recognizer endpoints</p> </li> <li> <p>Amazon DynamoDB tables and global secondary indexes throughput capacity</p> </li> <li> <p>Amazon ECS services</p> </li> <li> <p>Amazon ElastiCache for Redis clusters (replication groups)</p> </li> <li> <p>Amazon EMR clusters</p> </li> <li> <p>Amazon Keyspaces (for Apache Cassandra) tables</p> </li> <li> <p>Lambda function provisioned concurrency</p> </li> <li> <p>Amazon Managed Streaming for Apache Kafka broker storage</p> </li> <li> <p>Amazon SageMaker endpoint variants</p> </li> <li> <p>Spot Fleet (Amazon EC2) requests</p> </li> <li> <p>Custom resources provided by your own ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudWatch Application Insights"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon CloudWatch Application Insights</fullname> <p> Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.</p> <p>After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysis on impactful metrics and log errors. </p>\"><fullname>Amazon CloudWatch Applicati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1321, 1322], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1325, 1326, 1327, 1328], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1330, 1331], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["application-insights"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["applicationinsights"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410222, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1337], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1317, 1318, 1319, 1320, 1323, 1324, 1329, 1332, 1333, 1334, 1335, 1336, 1338, 1339, 1340], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-25\nx-release: v4\ntitle: Amazon CloudWatch Application Insights\ndescription: <fullname>Amazon CloudWatch Application Insights</fullname> <p> Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.</p> <p>After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysis on impactful metrics and log errors. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: application-insights\nx-aws-signingName: applicationinsights\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/applicationinsights/\">https://docs.aws.amazon.com/applicati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1342, 1343], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/applicationinsights/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T18:54:51.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-25: DataRow\">2018-11-25</span>", children: [1316, 1341, 1344, 1345, 1346, 1347, 1348], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-25, x-release:v4, title:Amazon CloudWatch Application Insights, description:<fullname>Amazon CloudWatch Application Insights</fullname> <p> Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.</p> <p>After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysis on impactful metrics and log errors. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:application-insights, x-aws-signingName:applicationinsights, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/application-insights-2018-11-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/applicationinsights/ }\nupdated: 2020-03-25T18:54:51.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1349], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-25, x-release:v4, title:Amazon CloudWatch Application Insights, description:<fullname>Amazon CloudWatch Application Insights</fullname> <p> Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.</p> <p>After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/applicationinsights/ }, updated:2020-03-25T18:54:51.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/application-insights/2018-11-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:application-insights: DataRow\">amazonaws.com:application-insights</span>", children: [1314, 1315, 1350], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-25\nversions: { 2018-11-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-25, x-release:v4, title:Amazon CloudWatch Application Insights, description:<fullname>Amazon CloudWatch Application Insights</fullname> <p> Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.</p> <p>After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server datab... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-09-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-09-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Application Cost Profiler"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This reference provides descriptions of the AWS Application Cost Profiler API.</p> <p>The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost report definitions, as well as to import your usage data into the Application Cost Profiler service.</p> <p>For more information about using this service, see the <a href="https://docs.aws.amazon.com/application-cost-profiler/latest/userguide/introduction.html">AWS Application Cost Profiler User Guide</a>.</p>\"><p>This reference provides descriptio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1359, 1360], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1363, 1364, 1365, 1366], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1368, 1369], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationcostprofiler"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["application-cost-profiler"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410223, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1375], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1355, 1356, 1357, 1358, 1361, 1362, 1367, 1370, 1371, 1372, 1373, 1374, 1376, 1377, 1378], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-09-10\nx-release: v4\ntitle: AWS Application Cost Profiler\ndescription: <p>This reference provides descriptions of the AWS Application Cost Profiler API.</p> <p>The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost report definitions, as well as to import your usage data into the Application Cost Profiler service.</p> <p>For more information about using this service, see the <a href="https://docs.aws.amazon.com/application-cost-profiler/latest/userguide/introduction.html">AWS Application Cost Profiler User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: applicationcostprofiler\nx-aws-signingName: application-cost-profiler\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-09-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/application-cost-profiler/\">https://docs.aws.amazon.com/applicati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1380, 1381], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/application-cost-profiler/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-09-10: DataRow\">2020-09-10</span>", children: [1354, 1379, 1382, 1383, 1384, 1385], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-09-10, x-release:v4, title:AWS Application Cost Profiler, description:<p>This reference provides descriptions of the AWS Application Cost Profiler API.</p> <p>The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost report definitions, as well as to import your usage data into the Application Cost Profiler service.</p> <p>For more information about using this service, see the <a href="https://docs.aws.amazon.com/application-cost-profiler/latest/userguide/introduction.html">AWS Application Cost Profiler User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:applicationcostprofiler, x-aws-signingName:application-cost-profiler, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/applicationcostprofiler-2020-09-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/application-cost-profiler/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1386], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-09-10: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-09-10, x-release:v4, title:AWS Application Cost Profiler, description:<p>This reference provides descriptions of the AWS Application Cost Profiler API.</p> <p>The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost report definitions, as well as to import your usage data into the Application Cost Profiler service.</p> <p>For more information about using this service, see the <a href="https://docs.aws.amazon.com/application-cost-profiler/latest/userguide/introduction.html">AWS Application Cost Profiler User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-provide..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/application-cost-profiler/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/applicationcostprofiler/2020-09-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-09-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:applicationcostprofiler: DataRow\">amazonaws.com:applicationcostprofiler</span>", children: [1352, 1353, 1387], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-09-10\nversions: { 2020-09-10:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-09-10, x-release:v4, title:AWS Application Cost Profiler, description:<p>This reference provides descriptions of the AWS Application Cost Profiler API.</p> <p>The AWS Application Cost Profiler API provides programmatic access to view, create, update, and delete application cost report definitions, as well as to import your usage data into the Application Cost Profiler service.</p> <p>For more information about using this service, see the <a href="https://docs.aws.amazon.com/application-cost-profiler/latest/userguide/introduction.html">AWS Application Cost Profiler User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http:... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-01-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-01-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS App Mesh"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.</p> <p>App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.</p> <note> <p>App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html">Service Discovery</a> in the <i>Amazon Elastic Container Service Developer Guide</i>. Kubernetes <code>kube-dns</code> and <code>coredns</code> are supported. For more information, see <a href="https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/">DNS for Services and Pods</a> in the Kubernetes documentation.</p> </note>\"><p>App Mesh is a service mesh based o<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1396, 1397], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1400, 1401, 1402, 1403], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1405, 1406], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appmesh"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["appmesh"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410224, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1412], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1392, 1393, 1394, 1395, 1398, 1399, 1404, 1407, 1408, 1409, 1410, 1411, 1413, 1414, 1415], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-01-25\nx-release: v4\ntitle: AWS App Mesh\ndescription: <p>App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.</p> <p>App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.</p> <note> <p>App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html">Service Discovery</a> in the <i>Amazon Elastic Container Service Developer Guide</i>. Kubernetes <code>kube-dns</code> and <code>coredns</code> are supported. For more information, see <a href="https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/">DNS for Services and Pods</a> in the Kubernetes documentation.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appmesh\nx-aws-signingName: appmesh\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-01-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/appmesh/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1417, 1418], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/appmesh/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-07T10:12:22.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-01-25: DataRow\">2019-01-25</span>", children: [1391, 1416, 1419, 1420, 1421, 1422, 1423], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-01-25, x-release:v4, title:AWS App Mesh, description:<p>App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.</p> <p>App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.</p> <note> <p>App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html">Service Discovery</a> in the <i>Amazon Elastic Container Service Developer Guide</i>. Kubernetes <code>kube-dns</code> and <code>coredns</code> are supported. For more information, see <a href="https://kubernete..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appmesh, x-aws-signingName:appmesh, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appmesh-2019-01-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appmesh/ }\nupdated: 2020-03-07T10:12:22.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1424], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-01-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-01-25, x-release:v4, title:AWS App Mesh, description:<p>App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.</p> <p>App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.</p> <note> <p>App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html">Service Discovery</a> in the <i>Amazon Elastic Container Service Developer Guide</i>. Kubernetes <code>kube-dns</code> and <code>coredns</code>..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appmesh/ }, updated:2020-03-07T10:12:22.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appmesh/2019-01-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-01-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appmesh: DataRow\">amazonaws.com:appmesh</span>", children: [1389, 1390, 1425], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-01-25\nversions: { 2019-01-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-01-25, x-release:v4, title:AWS App Mesh, description:<p>App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.</p> <p>App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.</p> <note> <p>App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html">Service Discovery</a> in the <i>Amazon Elastic Container Service Developer Guide</i>. Kubernetes <code>k... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-05-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-05-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS App Runner"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS App Runner</fullname> <p>AWS App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the AWS cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to provision and configure AWS resources.</p> <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.</p> <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">AWS App Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">AWS App Runner Release Notes</a>.</p> <p> To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that you can use to access the API, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">AWS App Runner endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>\"><fullname>AWS App Runner</fullname> <<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1434, 1435], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1438, 1439, 1440, 1441], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1443, 1444], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apprunner"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["apprunner"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410225, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1450], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1430, 1431, 1432, 1433, 1436, 1437, 1442, 1445, 1446, 1447, 1448, 1449, 1451, 1452, 1453], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-05-15\nx-release: v4\ntitle: AWS App Runner\ndescription: <fullname>AWS App Runner</fullname> <p>AWS App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the AWS cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to provision and configure AWS resources.</p> <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.</p> <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">AWS App Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">AWS App Runner Release Notes</a>.</p> <p> To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that you can use to access the API, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of Region-specific endpoints that App Runner supports, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">AWS App Runner endpoints and quotas</a> in the <i>AWS General Reference</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: apprunner\nx-aws-signingName: apprunner\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-05-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/apprunner/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1455, 1456], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/apprunner/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-05-15: DataRow\">2020-05-15</span>", children: [1429, 1454, 1457, 1458, 1459, 1460], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-05-15, x-release:v4, title:AWS App Runner, description:<fullname>AWS App Runner</fullname> <p>AWS App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the AWS cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to provision and configure AWS resources.</p> <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.</p> <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">AWS App Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">AWS App Runner Release Notes</a>.</p> <p> To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command li..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:apprunner, x-aws-signingName:apprunner, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/apprunner-2020-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apprunner/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1461], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-05-15: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-05-15, x-release:v4, title:AWS App Runner, description:<fullname>AWS App Runner</fullname> <p>AWS App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the AWS cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to provision and configure AWS resources.</p> <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.</p> <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">AWS App Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">AWS App Runner Release Notes</a>.</p> <p> To install the Software Development Kits (SD..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/apprunner/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/apprunner/2020-05-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-05-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:apprunner: DataRow\">amazonaws.com:apprunner</span>", children: [1427, 1428, 1462], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-05-15\nversions: { 2020-05-15:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-05-15, x-release:v4, title:AWS App Runner, description:<fullname>AWS App Runner</fullname> <p>AWS App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the AWS cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to provision and configure AWS resources.</p> <p>App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.</p> <p>For more information about App Runner, see the <a href="https://docs.aws.amazon.com/apprunner/latest/dg/">AWS App Runner Developer Guide</a>. For release information, see the <a href="https://docs.aws.amazon.com/apprunner/latest/relnotes/">AWS App Runner Release Notes</a>.</p> <p> To in... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon AppStream"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon AppStream 2.0</fullname> <p>This is the <i>Amazon AppStream 2.0 API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. AppStream 2.0 manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p> <note> <p>You can call the AppStream 2.0 API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access AppStream 2.0 API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p> </note> <p>To learn more about AppStream 2.0, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/appstream2">Amazon AppStream 2.0 product page</a> </p> </li> <li> <p> <a href="http://aws.amazon.com/documentation/appstream2">Amazon AppStream 2.0 documentation</a> </p> </li> </ul>\"><fullname>Amazon AppStream 2.0</fulln<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1471, 1472], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1475, 1476, 1477, 1478], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1480, 1481], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appstream"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["appstream"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410226, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1487], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1467, 1468, 1469, 1470, 1473, 1474, 1479, 1482, 1483, 1484, 1485, 1486, 1488, 1489, 1490], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-12-01\nx-release: v4\ntitle: Amazon AppStream\ndescription: <fullname>Amazon AppStream 2.0</fullname> <p>This is the <i>Amazon AppStream 2.0 API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. AppStream 2.0 manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p> <note> <p>You can call the AppStream 2.0 API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access AppStream 2.0 API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p> </note> <p>To learn more about AppStream 2.0, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/appstream2">Amazon AppStream 2.0 product page</a> </p> </li> <li> <p> <a href="http://aws.amazon.com/documentation/appstream2">Amazon AppStream 2.0 documentation</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appstream\nx-aws-signingName: appstream\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/appstream2/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1492, 1493], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/appstream2/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-12-01: DataRow\">2016-12-01</span>", children: [1466, 1491, 1494, 1495, 1496, 1497, 1498], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-12-01, x-release:v4, title:Amazon AppStream, description:<fullname>Amazon AppStream 2.0</fullname> <p>This is the <i>Amazon AppStream 2.0 API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. AppStream 2.0 manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p> <note> <p>You can call the AppStream 2.0 API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access AppStream 2.0 API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the <i>Amazon AppStream 2.0 Administration Guide</i>.</p> </note> <p>To learn more about AppStream 2.0, see the fo..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appstream, x-aws-signingName:appstream, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appstream-2016-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appstream2/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1499], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-12-01, x-release:v4, title:Amazon AppStream, description:<fullname>Amazon AppStream 2.0</fullname> <p>This is the <i>Amazon AppStream 2.0 API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. AppStream 2.0 manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p> <note> <p>You can call the AppStream 2.0 API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access AppStream 2.0 API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the <i>Amazon AppStream 2.0 Administration..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appstream2/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appstream/2016-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appstream: DataRow\">amazonaws.com:appstream</span>", children: [1464, 1465, 1500], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-12-01\nversions: { 2016-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-12-01, x-release:v4, title:Amazon AppStream, description:<fullname>Amazon AppStream 2.0</fullname> <p>This is the <i>Amazon AppStream 2.0 API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in AppStream 2.0. AppStream 2.0 is a fully managed, secure application streaming service that lets you stream desktop applications to users without rewriting applications. AppStream 2.0 manages the AWS resources that are required to host and run your applications, scales automatically, and provides access to your users on demand. </p> <note> <p>You can call the AppStream 2.0 API operations by using an interface VPC endpoint (interface endpoint). For more information, see <a href="https://docs.aws.amazon.com/appstream2/latest/developerguide/access-api-cli-through-interface-vpc-endpoint.html">Access AppStream 2.0 API Operations and CLI Commands Through an Interface VPC Endpoint</a> in the... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS AppSync"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AppSync provides API actions for creating and interacting with data sources using GraphQL from your application.\">AppSync provides API actions for crea<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1509, 1510], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1513, 1514, 1515, 1516], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1518, 1519], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appsync"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["appsync"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410227, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1525], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1505, 1506, 1507, 1508, 1511, 1512, 1517, 1520, 1521, 1522, 1523, 1524, 1526, 1527, 1528], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: AWS AppSync\ndescription: AppSync provides API actions for creating and interacting with data sources using GraphQL from your application.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: appsync\nx-aws-signingName: appsync\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/appsync/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1530, 1531], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/appsync/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [1504, 1529, 1532, 1533, 1534, 1535, 1536], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-25, x-release:v4, title:AWS AppSync, description:AppSync provides API actions for creating and interacting with data sources using GraphQL from your application., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appsync, x-aws-signingName:appsync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appsync-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appsync/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1537], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS AppSync, description:AppSync provides API actions for creating and interacting with data sources using GraphQL from your application., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appsync, x-aws-signingName:appsync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appsync-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/appsync/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/appsync/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:appsync: DataRow\">amazonaws.com:appsync</span>", children: [1502, 1503, 1538], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS AppSync, description:AppSync provides API actions for creating and interacting with data sources using GraphQL from your application., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:appsync, x-aws-signingName:appsync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/appsync-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-05-18"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-05-18"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Athena"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see <a href="http://docs.aws.amazon.com/athena/latest/ug/what-is.html">What is Amazon Athena</a> in the <i>Amazon Athena User Guide</i>.</p> <p>If you connect to Athena using the JDBC driver, use version 1.1.0 of the driver or later with the Amazon Athena API. Earlier version drivers do not support the API. For more information and to download the driver, see <a href="https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html">Accessing Amazon Athena with JDBC</a>.</p> <p>For code samples using the Amazon Web Services SDK for Java, see <a href="https://docs.aws.amazon.com/athena/latest/ug/code-samples.html">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>\"><p>Amazon Athena is an interactive qu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1547, 1548], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1551, 1552, 1553, 1554], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1556, 1557], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["athena"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410228, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1562], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1543, 1544, 1545, 1546, 1549, 1550, 1555, 1558, 1559, 1560, 1561, 1563, 1564, 1565], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-05-18\nx-release: v4\ntitle: Amazon Athena\ndescription: <p>Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see <a href="http://docs.aws.amazon.com/athena/latest/ug/what-is.html">What is Amazon Athena</a> in the <i>Amazon Athena User Guide</i>.</p> <p>If you connect to Athena using the JDBC driver, use version 1.1.0 of the driver or later with the Amazon Athena API. Earlier version drivers do not support the API. For more information and to download the driver, see <a href="https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html">Accessing Amazon Athena with JDBC</a>.</p> <p>For code samples using the Amazon Web Services SDK for Java, see <a href="https://docs.aws.amazon.com/athena/latest/ug/code-samples.html">Examples and Code Samples</a> in the <i>Amazon Athena User Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: athena\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-05-18<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/athena/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1567, 1568], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/athena/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T07:24:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-05-18: DataRow\">2017-05-18</span>", children: [1542, 1566, 1569, 1570, 1571, 1572, 1573], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-05-18, x-release:v4, title:Amazon Athena, description:<p>Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see <a href="http://docs.aws.amazon.com/athena/latest/ug/what-is.html">What is Amazon Athena</a> in the <i>Amazon Athena User Guide</i>.</p> <p>If you connect to Athena using the JDBC driver, use version 1.1.0 of the driver or later with the Amazon Athena API. Earlier version drivers do not support the API. For more information and to download the driver, see <a href="https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html">Accessing Amazon Athena with JDBC</a>.</p> <p>For code samples using the Amazon We..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:athena, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/athena-2017-05-18.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/athena/ }\nupdated: 2020-03-25T07:24:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1574], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-05-18: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-05-18, x-release:v4, title:Amazon Athena, description:<p>Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see <a href="http://docs.aws.amazon.com/athena/latest/ug/what-is.html">What is Amazon Athena</a> in the <i>Amazon Athena User Guide</i>.</p> <p>If you connect to Athena using the JDBC driver, use version 1.1.0 of the driver or later with the Amazon Athena API. Earlier version drivers do not support the API. For more information and to download the driver, see <a href="https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html">Accessing Ama..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/athena/ }, updated:2020-03-25T07:24:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/athena/2017-05-18/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-05-18: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:athena: DataRow\">amazonaws.com:athena</span>", children: [1540, 1541, 1575], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-05-18\nversions: { 2017-05-18:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-05-18, x-release:v4, title:Amazon Athena, description:<p>Amazon Athena is an interactive query service that lets you use standard SQL to analyze data directly in Amazon S3. You can point Athena at your data in Amazon S3 and run ad-hoc queries and get results in seconds. Athena is serverless, so there is no infrastructure to set up or manage. You pay only for the queries you run. Athena scales automatically—executing queries in parallel—so results are fast, even with large datasets and complex queries. For more information, see <a href="http://docs.aws.amazon.com/athena/latest/ug/what-is.html">What is Amazon Athena</a> in the <i>Amazon Athena User Guide</i>.</p> <p>If you connect to Athena using the JDBC driver, use version 1.1.0 of the driver or later with the Amazon Athena API. Earlier version drivers do not support the API. For more information and to download the driver, see <a href="https://docs.aws.amazon.com/athena/latest/u... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Audit Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors. </p> <p>Audit Manager is a service that provides automated evidence collection so that you can continuously audit your Amazon Web Services usage, and assess the effectiveness of your controls to better manage risk and simplify compliance.</p> <p>Audit Manager provides pre-built frameworks that structure and automate assessments for a given compliance standard. Frameworks include a pre-built collection of controls with descriptions and testing procedures, which are grouped according to the requirements of the specified compliance standard or regulation. You can also customize frameworks and controls to support internal audits with unique requirements. </p> <p>Use the following links to get started with the Audit Manager API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Audit Manager API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Audit Manager data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonParameters.html">Common parameters</a>: Parameters that all Query operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul> <p>If you're new to Audit Manager, we recommend that you review the <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/what-is.html"> Audit Manager User Guide</a>.</p>\"><p>Welcome to the Audit Manager API r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1584, 1585], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1588, 1589, 1590, 1591], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1593, 1594], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["auditmanager"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["auditmanager"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410229, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1600], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1580, 1581, 1582, 1583, 1586, 1587, 1592, 1595, 1596, 1597, 1598, 1599, 1601, 1602, 1603], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: AWS Audit Manager\ndescription: <p>Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors. </p> <p>Audit Manager is a service that provides automated evidence collection so that you can continuously audit your Amazon Web Services usage, and assess the effectiveness of your controls to better manage risk and simplify compliance.</p> <p>Audit Manager provides pre-built frameworks that structure and automate assessments for a given compliance standard. Frameworks include a pre-built collection of controls with descriptions and testing procedures, which are grouped according to the requirements of the specified compliance standard or regulation. You can also customize frameworks and controls to support internal audits with unique requirements. </p> <p>Use the following links to get started with the Audit Manager API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Operations.html">Actions</a>: An alphabetical list of all Audit Manager API operations.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_Types.html">Data types</a>: An alphabetical list of all Audit Manager data types.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonParameters.html">Common parameters</a>: Parameters that all Query operations can use.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/CommonErrors.html">Common errors</a>: Client and server errors that all operations can return.</p> </li> </ul> <p>If you're new to Audit Manager, we recommend that you review the <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/what-is.html"> Audit Manager User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: auditmanager\nx-aws-signingName: auditmanager\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/auditmanager/\">https://docs.aws.amazon.com/auditmana<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1605, 1606], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/auditmanager/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [1579, 1604, 1607, 1608, 1609, 1610], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2017-07-25, x-release:v4, title:AWS Audit Manager, description:<p>Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors. </p> <p>Audit Manager is a service that provides automated evidence collection so that you can continuously audit your Amazon Web Services usage, and assess the effectiveness of your controls to better manage risk and simplify compliance.</p> <p>Audit Manager provides pre-built frameworks that structure and automate assessments for a given compliance standard. Frameworks include a pre-built collection of controls with descriptions and testing procedures, which are grouped according to the requirements of the specified compliance standard or regulation. You can also customize frameworks and controls to support internal audits with unique requirements. </p> <p>Use the following links to get started with the Audit Manager API:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/audit-manager/latest/APIReference/API_..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:auditmanager, x-aws-signingName:auditmanager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/auditmanager-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/auditmanager/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1611], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:AWS Audit Manager, description:<p>Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors. </p> <p>Audit Manager is a service that provides automated evidence collection so that you can continuously audit your Amazon Web Services usage, and assess the effectiveness of your controls to better manage risk and simplify compliance.</p> <p>Audit Manager provides pre-built frameworks that structure and automate assessments for a given compliance standard. Frameworks include a pre-built collection of controls with descriptions and testing procedures, which are grouped according to the requirements of the specified compliance standard or regulation. You can also customize frameworks and controls to support internal audits with unique requirements. </p> <p>Use the following links to get started with the Audit Manager API:</p> <ul> <li> <p> <a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/auditmanager/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/auditmanager/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:auditmanager: DataRow\">amazonaws.com:auditmanager</span>", children: [1577, 1578, 1612], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:AWS Audit Manager, description:<p>Welcome to the Audit Manager API reference. This guide is for developers who need detailed information about the Audit Manager API operations, data types, and errors. </p> <p>Audit Manager is a service that provides automated evidence collection so that you can continuously audit your Amazon Web Services usage, and assess the effectiveness of your controls to better manage risk and simplify compliance.</p> <p>Audit Manager provides pre-built frameworks that structure and automate assessments for a given compliance standard. Frameworks include a pre-built collection of controls with descriptions and testing procedures, which are grouped according to the requirements of the specified compliance standard or regulation. You can also customize frameworks and controls to support internal audits with unique requirements. </p> <p>Use the following links to get started with the ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2011-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2011-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Auto Scaling"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon EC2 Auto Scaling</fullname> <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks.</p> <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required permissions for calls to Amazon EC2 Auto Scaling, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/ec2-auto-scaling-api-permissions.html">Granting IAM users required permissions for Amazon EC2 Auto Scaling resources</a> in the <i>Amazon EC2 Auto Scaling API Reference</i>.</p>\"><fullname>Amazon EC2 Auto Scaling</fu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1621, 1622], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1625, 1626, 1627, 1628], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1630, 1631], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["autoscaling"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410230, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1636], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1617, 1618, 1619, 1620, 1623, 1624, 1629, 1632, 1633, 1634, 1635, 1637, 1638, 1639], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2011-01-01\nx-release: v4\ntitle: Auto Scaling\ndescription: <fullname>Amazon EC2 Auto Scaling</fullname> <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks.</p> <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required permissions for calls to Amazon EC2 Auto Scaling, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/ec2-auto-scaling-api-permissions.html">Granting IAM users required permissions for Amazon EC2 Auto Scaling resources</a> in the <i>Amazon EC2 Auto Scaling API Reference</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: autoscaling\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2011-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/autoscaling/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1641, 1642], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/autoscaling/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2011-01-01: DataRow\">2011-01-01</span>", children: [1616, 1640, 1643, 1644, 1645, 1646, 1647], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2011-01-01, x-release:v4, title:Auto Scaling, description:<fullname>Amazon EC2 Auto Scaling</fullname> <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks.</p> <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required permissions for calls to Amazon EC2 Auto Scaling, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/ec2-auto-scaling-api-permissions.html">Granting IAM users required permissions for Amazon EC2 Auto Scaling resources</a> in the <i>Amazon EC2 Auto Scaling API Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:autoscaling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/autoscaling-2011-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/autoscaling/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1648], rightAlign: false, values: ["<span class=\"formatted\" title=\"2011-01-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2011-01-01, x-release:v4, title:Auto Scaling, description:<fullname>Amazon EC2 Auto Scaling</fullname> <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks.</p> <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required permissions for calls to Amazon EC2 Auto Scaling, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/ec2-auto-scaling-api-permissions.html">Granting IAM users required permissions for Amazon EC2 Auto Scaling resources</a> in the <i>Amazon EC2 Auto Scaling API Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/autoscaling/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/autoscaling/2011-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2011-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:autoscaling: DataRow\">amazonaws.com:autoscaling</span>", children: [1614, 1615, 1649], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2011-01-01\nversions: { 2011-01-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2011-01-01, x-release:v4, title:Auto Scaling, description:<fullname>Amazon EC2 Auto Scaling</fullname> <p>Amazon EC2 Auto Scaling is designed to automatically launch or terminate EC2 instances based on user-defined scaling policies, scheduled actions, and health checks.</p> <p>For more information about Amazon EC2 Auto Scaling, see the <a href="https://docs.aws.amazon.com/autoscaling/ec2/userguide/what-is-amazon-ec2-auto-scaling.html">Amazon EC2 Auto Scaling User Guide</a>. For information about granting IAM users required permissions for calls to Amazon EC2 Auto Scaling, see <a href="https://docs.aws.amazon.com/autoscaling/ec2/APIReference/ec2-auto-scaling-api-permissions.html">Granting IAM users required permissions for Amazon EC2 Auto Scaling resources</a> in the <i>Amazon EC2 Auto Scaling API Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-01-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-01-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Auto Scaling Plans"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources. </p> <p> <b>API Summary</b> </p> <p>You can use the AWS Auto Scaling service API to accomplish the following tasks:</p> <ul> <li> <p>Create and manage scaling plans</p> </li> <li> <p>Define target tracking scaling policies to dynamically scale your resources based on utilization</p> </li> <li> <p>Scale Amazon EC2 Auto Scaling groups using predictive scaling and dynamic scaling to scale your Amazon EC2 capacity faster</p> </li> <li> <p>Set minimum and maximum capacity limits</p> </li> <li> <p>Retrieve information on existing scaling plans</p> </li> <li> <p>Access current forecast data and historical forecast data for up to 56 days previous</p> </li> </ul> <p>To learn more about AWS Auto Scaling, including information about granting IAM users required permissions for AWS Auto Scaling actions, see the <a href="https://docs.aws.amazon.com/autoscaling/plans/userguide/what-is-aws-auto-scaling.html">AWS Auto Scaling User Guide</a>. </p>\"><fullname>AWS Auto Scaling</fullname><span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1658, 1659], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1662, 1663, 1664, 1665], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1667, 1668], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["autoscaling-plans"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["autoscaling-plans"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410231, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1674], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1654, 1655, 1656, 1657, 1660, 1661, 1666, 1669, 1670, 1671, 1672, 1673, 1675, 1676, 1677], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-01-06\nx-release: v4\ntitle: AWS Auto Scaling Plans\ndescription: <fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources. </p> <p> <b>API Summary</b> </p> <p>You can use the AWS Auto Scaling service API to accomplish the following tasks:</p> <ul> <li> <p>Create and manage scaling plans</p> </li> <li> <p>Define target tracking scaling policies to dynamically scale your resources based on utilization</p> </li> <li> <p>Scale Amazon EC2 Auto Scaling groups using predictive scaling and dynamic scaling to scale your Amazon EC2 capacity faster</p> </li> <li> <p>Set minimum and maximum capacity limits</p> </li> <li> <p>Retrieve information on existing scaling plans</p> </li> <li> <p>Access current forecast data and historical forecast data for up to 56 days previous</p> </li> </ul> <p>To learn more about AWS Auto Scaling, including information about granting IAM users required permissions for AWS Auto Scaling actions, see the <a href="https://docs.aws.amazon.com/autoscaling/plans/userguide/what-is-aws-auto-scaling.html">AWS Auto Scaling User Guide</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: autoscaling-plans\nx-aws-signingName: autoscaling-plans\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-01-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/autoscaling-plans/\">https://docs.aws.amazon.com/autoscali<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1679, 1680], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/autoscaling-plans/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-01-06: DataRow\">2018-01-06</span>", children: [1653, 1678, 1681, 1682, 1683, 1684, 1685], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-01-06, x-release:v4, title:AWS Auto Scaling Plans, description:<fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources. </p> <p> <b>API Summary</b> </p> <p>You can use the AWS Auto Scaling service API to accomplish the following tasks:</p> <ul> <li> <p>Create and manage scaling plans</p> </li> <li> <p>Define target tracking scaling policies to dynamically scale your resources based on utilization</p> </li> <li> <p>Scale Amazon EC2 Auto Scaling groups using predictive scaling and dynamic scaling to scale your Amazon EC2 capacity faster</p> </li> <li> <p>Set minimum and maximum capacity limits</p> </li> <li> <p>Retrieve information on existing scaling plans</p> </li> <li> <p>Access current forecast data and historical forecast data for up to 56 days previous</p> </li> </ul> <p>To learn more about AWS Auto Scaling, including information about granting IAM users required permissions for AWS Auto Scaling actions, see the <a href="https://docs.aws.a..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:autoscaling-plans, x-aws-signingName:autoscaling-plans, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/autoscaling-plans-2018-01-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/autoscaling-plans/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1686], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-01-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-06, x-release:v4, title:AWS Auto Scaling Plans, description:<fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources. </p> <p> <b>API Summary</b> </p> <p>You can use the AWS Auto Scaling service API to accomplish the following tasks:</p> <ul> <li> <p>Create and manage scaling plans</p> </li> <li> <p>Define target tracking scaling policies to dynamically scale your resources based on utilization</p> </li> <li> <p>Scale Amazon EC2 Auto Scaling groups using predictive scaling and dynamic scaling to scale your Amazon EC2 capacity faster</p> </li> <li> <p>Set minimum and maximum capacity limits</p> </li> <li> <p>Retrieve information on existing scaling plans</p> </li> <li> <p>Access current forecast data and historical forecast data for up to 56 days previous</p> </li> </ul> <p>To learn more about AWS Auto Scaling, including information about granting IAM users required..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/autoscaling-plans/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/autoscaling-plans/2018-01-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-01-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:autoscaling-plans: DataRow\">amazonaws.com:autoscaling-plans</span>", children: [1651, 1652, 1687], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-01-06\nversions: { 2018-01-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-06, x-release:v4, title:AWS Auto Scaling Plans, description:<fullname>AWS Auto Scaling</fullname> <p>Use AWS Auto Scaling to create scaling plans for your applications to automatically scale your scalable AWS resources. </p> <p> <b>API Summary</b> </p> <p>You can use the AWS Auto Scaling service API to accomplish the following tasks:</p> <ul> <li> <p>Create and manage scaling plans</p> </li> <li> <p>Define target tracking scaling policies to dynamically scale your resources based on utilization</p> </li> <li> <p>Scale Amazon EC2 Auto Scaling groups using predictive scaling and dynamic scaling to scale your Amazon EC2 capacity faster</p> </li> <li> <p>Set minimum and maximum capacity limits</p> </li> <li> <p>Retrieve information on existing scaling plans</p> </li> <li> <p>Access current forecast data and historical forecast data for up to 56 days previous</p> </li> </ul> <p>To learn more about AWS Auto Scaling, including inform... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Backup"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Backup</fullname> <p>Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, while also providing reporting and auditing.</p>\"><fullname>Backup</fullname> <p>Backup<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1696, 1697], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1700, 1701, 1702, 1703], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1705, 1706], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["backup"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410232, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1711], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1692, 1693, 1694, 1695, 1698, 1699, 1704, 1707, 1708, 1709, 1710, 1712, 1713, 1714], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-15\nx-release: v4\ntitle: AWS Backup\ndescription: <fullname>Backup</fullname> <p>Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, while also providing reporting and auditing.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: backup\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/backup/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1716, 1717], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/backup/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-15: DataRow\">2018-11-15</span>", children: [1691, 1715, 1718, 1719, 1720, 1721, 1722], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-15, x-release:v4, title:AWS Backup, description:<fullname>Backup</fullname> <p>Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, while also providing reporting and auditing.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:backup, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/backup-2018-11-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/backup/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1723], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-15, x-release:v4, title:AWS Backup, description:<fullname>Backup</fullname> <p>Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, while also providing reporting and auditing.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:backup, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/backup-2018-11-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisg..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/backup/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/backup/2018-11-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:backup: DataRow\">amazonaws.com:backup</span>", children: [1689, 1690, 1724], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-15\nversions: { 2018-11-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-15, x-release:v4, title:AWS Backup, description:<fullname>Backup</fullname> <p>Backup is a unified backup service designed to protect Amazon Web Services services and their associated data. Backup simplifies the creation, migration, restoration, and deletion of backups, while also providing reporting and auditing.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:backup, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/backup-2018-11-15.normal.json, converter:{ url:https://github.com/mermad... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-08-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-08-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Batch"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Batch</fullname> <p>Using Batch, you can run batch computing workloads on the Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. Given these advantages, Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping you to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.</p> <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there's no need to install or manage batch computing software. This means that you can focus your time and energy on analyzing results and solving your specific problems. </p>\"><fullname>Batch</fullname> <p>Using B<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1733, 1734], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1737, 1738, 1739, 1740], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1742, 1743], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["batch"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410233, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1748], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1729, 1730, 1731, 1732, 1735, 1736, 1741, 1744, 1745, 1746, 1747, 1749, 1750, 1751], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-08-10\nx-release: v4\ntitle: AWS Batch\ndescription: <fullname>Batch</fullname> <p>Using Batch, you can run batch computing workloads on the Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. Given these advantages, Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping you to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.</p> <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there's no need to install or manage batch computing software. This means that you can focus your time and energy on analyzing results and solving your specific problems. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: batch\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-08-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/batch/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1753, 1754], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/batch/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-08-10: DataRow\">2016-08-10</span>", children: [1728, 1752, 1755, 1756, 1757, 1758, 1759], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-08-10, x-release:v4, title:AWS Batch, description:<fullname>Batch</fullname> <p>Using Batch, you can run batch computing workloads on the Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. Given these advantages, Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping you to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.</p> <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there's no need to install or manage batch computing software. This me..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:batch, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/batch-2016-08-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/batch/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1760], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-08-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-08-10, x-release:v4, title:AWS Batch, description:<fullname>Batch</fullname> <p>Using Batch, you can run batch computing workloads on the Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. Given these advantages, Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping you to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.</p> <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With Batch, there..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/batch/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/batch/2016-08-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-08-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:batch: DataRow\">amazonaws.com:batch</span>", children: [1726, 1727, 1761], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-08-10\nversions: { 2016-08-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-08-10, x-release:v4, title:AWS Batch, description:<fullname>Batch</fullname> <p>Using Batch, you can run batch computing workloads on the Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. Batch uses the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure. At the same time, it also adopts a familiar batch computing software approach. Given these advantages, Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping you to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.</p> <p>As a fully managed service, Batch can run batch computing workloads of any scale. Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of you... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-09-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-09-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Braket"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket.\">The Amazon Braket API Reference provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1770, 1771], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1774, 1775, 1776, 1777], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1779, 1780], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["braket"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["braket"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410234, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1786], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1766, 1767, 1768, 1769, 1772, 1773, 1778, 1781, 1782, 1783, 1784, 1785, 1787, 1788, 1789], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-09-01\nx-release: v4\ntitle: Braket\ndescription: The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: braket\nx-aws-signingName: braket\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-09-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/braket/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1791, 1792], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/braket/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-09-01: DataRow\">2019-09-01</span>", children: [1765, 1790, 1793, 1794, 1795, 1796], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2019-09-01, x-release:v4, title:Braket, description:The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:braket, x-aws-signingName:braket, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/braket-2019-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/braket/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1797], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-09-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2019-09-01, x-release:v4, title:Braket, description:The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:braket, x-aws-signingName:braket, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/braket-2019-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/braket/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/braket/2019-09-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-09-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:braket: DataRow\">amazonaws.com:braket</span>", children: [1763, 1764, 1798], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2019-09-01\nversions: { 2019-09-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2019-09-01, x-release:v4, title:Braket, description:The Amazon Braket API Reference provides information about the operations and structures supported in Amazon Braket., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:braket, x-aws-signingName:braket, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/braket-2019-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/deve... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-10-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-10-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Budgets"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The AWS Budgets API enables you to use AWS Budgets to plan your service usage, service costs, and instance reservations. The API reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Budgets. </p> <p>Budgets provide you with a way to see the following information:</p> <ul> <li> <p>How close your plan is to your budgeted amount or to the free tier limits</p> </li> <li> <p>Your usage-to-date, including how much you've used of your Reserved Instances (RIs)</p> </li> <li> <p>Your current estimated charges from AWS, and how much your predicted usage will accrue in charges by the end of the month</p> </li> <li> <p>How much of your budget has been used</p> </li> </ul> <p>AWS updates your budget status several times a day. Budgets track your unblended costs, subscriptions, refunds, and RIs. You can create the following types of budgets:</p> <ul> <li> <p> <b>Cost budgets</b> - Plan how much you want to spend on a service.</p> </li> <li> <p> <b>Usage budgets</b> - Plan how much you want to use one or more services.</p> </li> <li> <p> <b>RI utilization budgets</b> - Define a utilization threshold, and receive alerts when your RI usage falls below that threshold. This lets you see if your RIs are unused or under-utilized.</p> </li> <li> <p> <b>RI coverage budgets</b> - Define a coverage threshold, and receive alerts when the number of your instance hours that are covered by RIs fall below that threshold. This lets you see how much of your instance usage is covered by a reservation.</p> </li> </ul> <p>Service Endpoint</p> <p>The AWS Budgets API provides the following endpoint:</p> <ul> <li> <p>https://budgets.amazonaws.com</p> </li> </ul> <p>For information about costs that are associated with the AWS Budgets API, see <a href="https://aws.amazon.com/aws-cost-management/pricing/">AWS Cost Management Pricing</a>.</p>\"><p>The AWS Budgets API enables you to<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1807, 1808], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1811, 1812, 1813, 1814], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1816, 1817], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["budgets"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410235, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1822], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1803, 1804, 1805, 1806, 1809, 1810, 1815, 1818, 1819, 1820, 1821, 1823, 1824, 1825], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-10-20\nx-release: v4\ntitle: AWS Budgets\ndescription: <p>The AWS Budgets API enables you to use AWS Budgets to plan your service usage, service costs, and instance reservations. The API reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Budgets. </p> <p>Budgets provide you with a way to see the following information:</p> <ul> <li> <p>How close your plan is to your budgeted amount or to the free tier limits</p> </li> <li> <p>Your usage-to-date, including how much you've used of your Reserved Instances (RIs)</p> </li> <li> <p>Your current estimated charges from AWS, and how much your predicted usage will accrue in charges by the end of the month</p> </li> <li> <p>How much of your budget has been used</p> </li> </ul> <p>AWS updates your budget status several times a day. Budgets track your unblended costs, subscriptions, refunds, and RIs. You can create the following types of budgets:</p> <ul> <li> <p> <b>Cost budgets</b> - Plan how much you want to spend on a service.</p> </li> <li> <p> <b>Usage budgets</b> - Plan how much you want to use one or more services.</p> </li> <li> <p> <b>RI utilization budgets</b> - Define a utilization threshold, and receive alerts when your RI usage falls below that threshold. This lets you see if your RIs are unused or under-utilized.</p> </li> <li> <p> <b>RI coverage budgets</b> - Define a coverage threshold, and receive alerts when the number of your instance hours that are covered by RIs fall below that threshold. This lets you see how much of your instance usage is covered by a reservation.</p> </li> </ul> <p>Service Endpoint</p> <p>The AWS Budgets API provides the following endpoint:</p> <ul> <li> <p>https://budgets.amazonaws.com</p> </li> </ul> <p>For information about costs that are associated with the AWS Budgets API, see <a href="https://aws.amazon.com/aws-cost-management/pricing/">AWS Cost Management Pricing</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: budgets\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-10-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/budgets/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1827, 1828], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/budgets/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-10-20: DataRow\">2016-10-20</span>", children: [1802, 1826, 1829, 1830, 1831, 1832, 1833], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-10-20, x-release:v4, title:AWS Budgets, description:<p>The AWS Budgets API enables you to use AWS Budgets to plan your service usage, service costs, and instance reservations. The API reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Budgets. </p> <p>Budgets provide you with a way to see the following information:</p> <ul> <li> <p>How close your plan is to your budgeted amount or to the free tier limits</p> </li> <li> <p>Your usage-to-date, including how much you've used of your Reserved Instances (RIs)</p> </li> <li> <p>Your current estimated charges from AWS, and how much your predicted usage will accrue in charges by the end of the month</p> </li> <li> <p>How much of your budget has been used</p> </li> </ul> <p>AWS updates your budget status several times a day. Budgets track your unblended costs, subscriptions, refunds, and RIs. You can create the following types of budgets:</p> <ul> <li> <p> <b>Cost budgets</b> - Plan how much you want to spend on a service.</p> </li> <li>..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:budgets, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/budgets-2016-10-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/budgets/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1834], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-10-20: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-20, x-release:v4, title:AWS Budgets, description:<p>The AWS Budgets API enables you to use AWS Budgets to plan your service usage, service costs, and instance reservations. The API reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Budgets. </p> <p>Budgets provide you with a way to see the following information:</p> <ul> <li> <p>How close your plan is to your budgeted amount or to the free tier limits</p> </li> <li> <p>Your usage-to-date, including how much you've used of your Reserved Instances (RIs)</p> </li> <li> <p>Your current estimated charges from AWS, and how much your predicted usage will accrue in charges by the end of the month</p> </li> <li> <p>How much of your budget has been used</p> </li> </ul> <p>AWS updates your budget status several times a day. Budgets track your unblended costs, subscriptions, refunds, and RIs. You can create the following types of budgets:</p> <ul> <li> <p> <b>Cost budgets..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/budgets/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/budgets/2016-10-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-10-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:budgets: DataRow\">amazonaws.com:budgets</span>", children: [1800, 1801, 1835], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-10-20\nversions: { 2016-10-20:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-20, x-release:v4, title:AWS Budgets, description:<p>The AWS Budgets API enables you to use AWS Budgets to plan your service usage, service costs, and instance reservations. The API reference provides descriptions, syntax, and usage examples for each of the actions and data types for AWS Budgets. </p> <p>Budgets provide you with a way to see the following information:</p> <ul> <li> <p>How close your plan is to your budgeted amount or to the free tier limits</p> </li> <li> <p>Your usage-to-date, including how much you've used of your Reserved Instances (RIs)</p> </li> <li> <p>Your current estimated charges from AWS, and how much your predicted usage will accrue in charges by the end of the month</p> </li> <li> <p>How much of your budget has been used</p> </li> </ul> <p>AWS updates your budget status several times a day. Budgets track your unblended costs, subscriptions, refunds, and RIs. You can create the following types of bud... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Cost Explorer Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment. </p> <p>Service Endpoint</p> <p>The Cost Explorer API provides the following endpoint:</p> <ul> <li> <p> <code>https://ce.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>For information about the costs that are associated with the Cost Explorer API, see <a href="http://aws.amazon.com/aws-cost-management/pricing/">Amazon Web Services Cost Management Pricing</a>.</p>\"><p>You can use the Cost Explorer API <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1844, 1845], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1848, 1849, 1850, 1851], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1853, 1854], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ce"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ce"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410236, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1860], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1840, 1841, 1842, 1843, 1846, 1847, 1852, 1855, 1856, 1857, 1858, 1859, 1861, 1862, 1863], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-25\nx-release: v4\ntitle: AWS Cost Explorer Service\ndescription: <p>You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment. </p> <p>Service Endpoint</p> <p>The Cost Explorer API provides the following endpoint:</p> <ul> <li> <p> <code>https://ce.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>For information about the costs that are associated with the Cost Explorer API, see <a href="http://aws.amazon.com/aws-cost-management/pricing/">Amazon Web Services Cost Management Pricing</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ce\nx-aws-signingName: ce\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ce/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1865, 1866], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ce/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T20:02:04.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-25: DataRow\">2017-10-25</span>", children: [1839, 1864, 1867, 1868, 1869, 1870, 1871], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-25, x-release:v4, title:AWS Cost Explorer Service, description:<p>You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment. </p> <p>Service Endpoint</p> <p>The Cost Explorer API provides the following endpoint:</p> <ul> <li> <p> <code>https://ce.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>For information about the costs that are associated with the Cost Explorer API, see <a href="http://aws.amazon.com/aws-cost-management/pricing/">Amazon Web Services Cost Management Pricing</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ce, x-aws-signingName:ce, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ce-2017-10-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ce/ }\nupdated: 2020-04-21T20:02:04.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1872], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-25, x-release:v4, title:AWS Cost Explorer Service, description:<p>You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment. </p> <p>Service Endpoint</p> <p>The Cost Explorer API provides the following endpoint:</p> <ul> <li> <p> <code>https://ce.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>For information about the costs that are associated with the Cost Explorer API, see <a href="http://aws.amazon.com/aws-cost-management/pricing/">Amazon Web Services Cost Management Pricing</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, ema..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ce/ }, updated:2020-04-21T20:02:04.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ce/2017-10-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ce: DataRow\">amazonaws.com:ce</span>", children: [1837, 1838, 1873], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-25\nversions: { 2017-10-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-25, x-release:v4, title:AWS Cost Explorer Service, description:<p>You can use the Cost Explorer API to programmatically query your cost and usage data. You can query for aggregated data such as total monthly costs or total daily usage. You can also query for granular data. This might include the number of daily write operations for Amazon DynamoDB database tables in your production environment. </p> <p>Service Endpoint</p> <p>The Cost Explorer API provides the following endpoint:</p> <ul> <li> <p> <code>https://ce.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>For information about the costs that are associated with the Cost Explorer API, see <a href="http://aws.amazon.com/aws-cost-management/pricing/">Amazon Web Services Cost Management Pricing</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-te... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Chime"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the <a href="http://aws.amazon.com/developer/">AWS Developer Center</a>. </p> </dd> <dt>Using the AWS CLI</dt> <dd> <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/installing.html">Installing the AWS Command Line Interface</a> in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the <a href="https://docs.aws.amazon.com/cli/latest/reference/chime/index.html">Amazon Chime commands</a> in the <i>AWS CLI Command Reference</i>. </p> </dd> <dt>Using REST APIs</dt> <dd> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p> </dd> </dl> <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see <a href="https://docs.aws.amazon.com/chime/latest/ag/security-iam.html">Identity and Access Management for Amazon Chime</a> in the <i>Amazon Chime Administration Guide</i>.</p>\"><p>The Amazon Chime API (application <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1882, 1883], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1886, 1887, 1888, 1889], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1891, 1892], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["chime"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410237, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1897], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1878, 1879, 1880, 1881, 1884, 1885, 1890, 1893, 1894, 1895, 1896, 1898, 1899, 1900], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-01\nx-release: v4\ntitle: Amazon Chime\ndescription: <p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the <a href="http://aws.amazon.com/developer/">AWS Developer Center</a>. </p> </dd> <dt>Using the AWS CLI</dt> <dd> <p>Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/installing.html">Installing the AWS Command Line Interface</a> in the <i>AWS Command Line Interface User Guide</i>. For a list of available Amazon Chime commands, see the <a href="https://docs.aws.amazon.com/cli/latest/reference/chime/index.html">Amazon Chime commands</a> in the <i>AWS CLI Command Reference</i>. </p> </dd> <dt>Using REST APIs</dt> <dd> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>When making REST API calls, use the service name <code>chime</code> and REST endpoint <code>https://service.chime.aws.amazon.com</code>.</p> </dd> </dl> <p>Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see <a href="https://docs.aws.amazon.com/chime/latest/ag/security-iam.html">Identity and Access Management for Amazon Chime</a> in the <i>Amazon Chime Administration Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: chime\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/chime/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1902, 1903], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/chime/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-09T06:28:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-01: DataRow\">2018-05-01</span>", children: [1877, 1901, 1904, 1905, 1906, 1907, 1908], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-01, x-release:v4, title:Amazon Chime, description:<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't need to write code to calculate a signature for request authenticati..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/chime-2018-05-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/chime/ }\nupdated: 2020-04-09T06:28:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1909], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-01, x-release:v4, title:Amazon Chime, description:<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Using an AWS SDK</dt> <dd> <p> You don't ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/chime/ }, updated:2020-04-09T06:28:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime/2018-05-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:chime: DataRow\">amazonaws.com:chime</span>", children: [1875, 1876, 1910], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-01\nversions: { 2018-05-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-01, x-release:v4, title:Amazon Chime, description:<p>The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see <a href="https://docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html"> Using the Amazon Chime SDK </a> in the <i>Amazon Chime Developer Guide</i>.</p> <p>You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.</p> <dl> <dt>Us... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Cloud9"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Cloud9</fullname> <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about Cloud9, see the <a href="https://docs.aws.amazon.com/cloud9/latest/user-guide">Cloud9 User Guide</a>.</p> <p>Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment.</p> </li> <li> <p> <code>DescribeEnvironmentMemberships</code>: Gets information about environment members for an environment.</p> </li> <li> <p> <code>DescribeEnvironments</code>: Gets information about environments.</p> </li> <li> <p> <code>DescribeEnvironmentStatus</code>: Gets status information for an environment.</p> </li> <li> <p> <code>ListEnvironments</code>: Gets a list of environment identifiers.</p> </li> <li> <p> <code>ListTagsForResource</code>: Gets the tags for an environment.</p> </li> <li> <p> <code>TagResource</code>: Adds tags to an environment.</p> </li> <li> <p> <code>UntagResource</code>: Removes tags from an environment.</p> </li> <li> <p> <code>UpdateEnvironment</code>: Changes the settings of an existing environment.</p> </li> <li> <p> <code>UpdateEnvironmentMembership</code>: Changes the settings of an existing environment member for an environment.</p> </li> </ul>\"><fullname>Cloud9</fullname> <p>Cloud9<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1919, 1920], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1923, 1924, 1925, 1926], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1928, 1929], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloud9"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410238, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1934], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1915, 1916, 1917, 1918, 1921, 1922, 1927, 1930, 1931, 1932, 1933, 1935, 1936, 1937], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-23\nx-release: v4\ntitle: AWS Cloud9\ndescription: <fullname>Cloud9</fullname> <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about Cloud9, see the <a href="https://docs.aws.amazon.com/cloud9/latest/user-guide">Cloud9 User Guide</a>.</p> <p>Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment.</p> </li> <li> <p> <code>DescribeEnvironmentMemberships</code>: Gets information about environment members for an environment.</p> </li> <li> <p> <code>DescribeEnvironments</code>: Gets information about environments.</p> </li> <li> <p> <code>DescribeEnvironmentStatus</code>: Gets status information for an environment.</p> </li> <li> <p> <code>ListEnvironments</code>: Gets a list of environment identifiers.</p> </li> <li> <p> <code>ListTagsForResource</code>: Gets the tags for an environment.</p> </li> <li> <p> <code>TagResource</code>: Adds tags to an environment.</p> </li> <li> <p> <code>UntagResource</code>: Removes tags from an environment.</p> </li> <li> <p> <code>UpdateEnvironment</code>: Changes the settings of an existing environment.</p> </li> <li> <p> <code>UpdateEnvironmentMembership</code>: Changes the settings of an existing environment member for an environment.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloud9\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloud9/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1939, 1940], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloud9/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-23: DataRow\">2017-09-23</span>", children: [1914, 1938, 1941, 1942, 1943, 1944, 1945], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-23, x-release:v4, title:AWS Cloud9, description:<fullname>Cloud9</fullname> <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about Cloud9, see the <a href="https://docs.aws.amazon.com/cloud9/latest/user-guide">Cloud9 User Guide</a>.</p> <p>Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment.</p> </li> <li> <p> <code>DescribeEnvironmentMemberships</code>: Gets information about environment memb..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloud9, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloud9-2017-09-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloud9/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1946], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-23, x-release:v4, title:AWS Cloud9, description:<fullname>Cloud9</fullname> <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about Cloud9, see the <a href="https://docs.aws.amazon.com/cloud9/latest/user-guide">Cloud9 User Guide</a>.</p> <p>Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment.</p> </li> <li> <p> <code>DescribeEnvi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloud9/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloud9/2017-09-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloud9: DataRow\">amazonaws.com:cloud9</span>", children: [1912, 1913, 1947], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-23\nversions: { 2017-09-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-23, x-release:v4, title:AWS Cloud9, description:<fullname>Cloud9</fullname> <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.</p> <p>For more information about Cloud9, see the <a href="https://docs.aws.amazon.com/cloud9/latest/user-guide">Cloud9 User Guide</a>.</p> <p>Cloud9 supports these operations:</p> <ul> <li> <p> <code>CreateEnvironmentEC2</code>: Creates an Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.</p> </li> <li> <p> <code>CreateEnvironmentMembership</code>: Adds an environment member to an environment.</p> </li> <li> <p> <code>DeleteEnvironment</code>: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.</p> </li> <li> <p> <code>DeleteEnvironmentMembership</code>: Deletes an environment member from an environment... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-01-11"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-01-11"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudDirectory"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Cloud Directory</fullname> <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>\"><fullname>Amazon Cloud Directory</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1956, 1957], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1960, 1961, 1962, 1963], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [1965, 1966], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["clouddirectory"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["clouddirectory"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410239, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [1972], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1952, 1953, 1954, 1955, 1958, 1959, 1964, 1967, 1968, 1969, 1970, 1971, 1973, 1974, 1975], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-01-11\nx-release: v4\ntitle: Amazon CloudDirectory\ndescription: <fullname>Amazon Cloud Directory</fullname> <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: clouddirectory\nx-aws-signingName: clouddirectory\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-01-11<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/clouddirectory/\">https://docs.aws.amazon.com/clouddire<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [1977, 1978], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/clouddirectory/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-01-11: DataRow\">2017-01-11</span>", children: [1951, 1976, 1979, 1980, 1981, 1982, 1983], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-01-11, x-release:v4, title:Amazon CloudDirectory, description:<fullname>Amazon Cloud Directory</fullname> <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:clouddirectory, x-aws-signingName:clouddirectory, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/clouddirectory-2017-01-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/clouddirectory/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [1984], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-01-11: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-11, x-release:v4, title:Amazon CloudDirectory, description:<fullname>Amazon Cloud Directory</fullname> <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/clouddirectory/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/clouddirectory/2017-01-11/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-01-11: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:clouddirectory: DataRow\">amazonaws.com:clouddirectory</span>", children: [1949, 1950, 1985], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-01-11\nversions: { 2017-01-11:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-11, x-release:v4, title:Amazon CloudDirectory, description:<fullname>Amazon Cloud Directory</fullname> <p>Amazon Cloud Directory is a component of the AWS Directory Service that simplifies the development and management of cloud-scale web, mobile, and IoT applications. This guide describes the Cloud Directory operations that you can call programmatically and includes detailed information on data types and errors. For information about Cloud Directory features, see <a href="https://aws.amazon.com/directoryservice/">AWS Directory Service</a> and the <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/what_is_cloud_directory.html">Amazon Cloud Directory Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.c... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-05-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-05-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CloudFormation"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CloudFormation</fullname> <p>CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.</p> <p>With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about CloudFormation, see the <a href="http://aws.amazon.com/cloudformation/">CloudFormation Product Page</a>.</p> <p>CloudFormation makes use of other Amazon Web Services products. If you need additional technical information about a specific Amazon Web Services product, you can find the product's technical documentation at <a href="https://docs.aws.amazon.com/"> <code>docs.aws.amazon.com</code> </a>.</p>\"><fullname>AWS CloudFormation</fullnam<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [1994, 1995], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [1998, 1999, 2000, 2001], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2003, 2004], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudformation"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410240, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2009], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [1990, 1991, 1992, 1993, 1996, 1997, 2002, 2005, 2006, 2007, 2008, 2010, 2011, 2012], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-05-15\nx-release: v4\ntitle: AWS CloudFormation\ndescription: <fullname>AWS CloudFormation</fullname> <p>CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.</p> <p>With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about CloudFormation, see the <a href="http://aws.amazon.com/cloudformation/">CloudFormation Product Page</a>.</p> <p>CloudFormation makes use of other Amazon Web Services products. If you need additional technical information about a specific Amazon Web Services product, you can find the product's technical documentation at <a href="https://docs.aws.amazon.com/"> <code>docs.aws.amazon.com</code> </a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudformation\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-05-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/cloudformation/\">https://docs.aws.amazon.com/cloudform<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2014, 2015], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudformation/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-09T06:28:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-05-15: DataRow\">2010-05-15</span>", children: [1989, 2013, 2016, 2017, 2018, 2019, 2020], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2010-05-15, x-release:v4, title:AWS CloudFormation, description:<fullname>AWS CloudFormation</fullname> <p>CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.</p> <p>With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about CloudFormation, see the <a href="http://aws.amazon.com/cloudformation/">CloudFormation Product Page</a>.</p> <p>Clo..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudformation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudformation-2010-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudformation/ }\nupdated: 2020-04-09T06:28:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2021], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-05-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2010-05-15, x-release:v4, title:AWS CloudFormation, description:<fullname>AWS CloudFormation</fullname> <p>CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.</p> <p>With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about CloudFormation, see the <a href="http://a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudformation/ }, updated:2020-04-09T06:28:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudformation/2010-05-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-05-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudformation: DataRow\">amazonaws.com:cloudformation</span>", children: [1987, 1988, 2022], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2010-05-15\nversions: { 2010-05-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2010-05-15, x-release:v4, title:AWS CloudFormation, description:<fullname>AWS CloudFormation</fullname> <p>CloudFormation allows you to create and manage Amazon Web Services infrastructure deployments predictably and repeatedly. You can use CloudFormation to leverage Amazon Web Services products, such as Amazon Elastic Compute Cloud, Amazon Elastic Block Store, Amazon Simple Notification Service, Elastic Load Balancing, and Auto Scaling to build highly-reliable, highly scalable, cost-effective applications without creating or configuring the underlying Amazon Web Services infrastructure.</p> <p>With CloudFormation, you declare all of your resources and dependencies in a template file. The template defines a collection of resources as a single unit called a stack. CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for you.</p> <p>For more information about Cl... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-05-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-05-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudFront"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon CloudFront</fullname> <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the <i>Amazon CloudFront Developer Guide</i>.</p>\"><fullname>Amazon CloudFront</fullname<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2031, 2032], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2035, 2036, 2037, 2038], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2040, 2041], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudfront"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410241, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2046], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2027, 2028, 2029, 2030, 2033, 2034, 2039, 2042, 2043, 2044, 2045, 2047, 2048, 2049], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-05-31\nx-release: v4\ntitle: Amazon CloudFront\ndescription: <fullname>Amazon CloudFront</fullname> <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the <i>Amazon CloudFront Developer Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudfront\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-05-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloudfront/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2051, 2052], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudfront/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-05-31: DataRow\">2020-05-31</span>", children: [2026, 2050, 2053, 2054, 2055, 2056], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-05-31, x-release:v4, title:Amazon CloudFront, description:<fullname>Amazon CloudFront</fullname> <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the <i>Amazon CloudFront Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudfront, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudfront-2020-05-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudfront/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2057], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-05-31: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-05-31, x-release:v4, title:Amazon CloudFront, description:<fullname>Amazon CloudFront</fullname> <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the <i>Amazon CloudFront Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudfront, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudfront-2020-05-31.normal.json, converter:{ url:https://..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudfront/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudfront/2020-05-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-05-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudfront: DataRow\">amazonaws.com:cloudfront</span>", children: [2024, 2025, 2058], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-05-31\nversions: { 2020-05-31:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-05-31, x-release:v4, title:Amazon CloudFront, description:<fullname>Amazon CloudFront</fullname> <p>This is the <i>Amazon CloudFront API Reference</i>. This guide is for developers who need detailed information about CloudFront API actions, data types, and errors. For detailed information about CloudFront features, see the <i>Amazon CloudFront Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudfront, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudfront-2020-05-3... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-05-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-05-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudHSM"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS CloudHSM Classic User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/classic/APIReference/">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API Reference</a>.</p>\"><fullname>AWS CloudHSM Service</fulln<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2067, 2068], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2071, 2072, 2073, 2074], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2076, 2077], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudhsm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410242, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2082], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2063, 2064, 2065, 2066, 2069, 2070, 2075, 2078, 2079, 2080, 2081, 2083, 2084, 2085], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-05-30\nx-release: v4\ntitle: Amazon CloudHSM\ndescription: <fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS CloudHSM Classic User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/classic/APIReference/">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API Reference</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudhsm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-05-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloudhsm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2087, 2088], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudhsm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-05-30: DataRow\">2014-05-30</span>", children: [2062, 2086, 2089, 2090, 2091, 2092, 2093], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-05-30, x-release:v4, title:Amazon CloudHSM, description:<fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS CloudHSM Classic User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/classic/APIReference/">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudhsm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudhsm-2014-05-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudhsm/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2094], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-05-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-05-30, x-release:v4, title:Amazon CloudHSM, description:<fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS CloudHSM Classic User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/classic/APIReference/">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:http..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudhsm/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudhsm/2014-05-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-05-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudhsm: DataRow\">amazonaws.com:cloudhsm</span>", children: [2060, 2061, 2095], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-05-30\nversions: { 2014-05-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-05-30, x-release:v4, title:Amazon CloudHSM, description:<fullname>AWS CloudHSM Service</fullname> <p>This is documentation for <b>AWS CloudHSM Classic</b>. For more information, see <a href="http://aws.amazon.com/cloudhsm/faqs-classic/">AWS CloudHSM Classic FAQs</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/classic/userguide/">AWS CloudHSM Classic User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/classic/APIReference/">AWS CloudHSM Classic API Reference</a>.</p> <p> <b>For information about the current version of AWS CloudHSM</b>, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a>, the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>, and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/APIReference/">AWS CloudHSM API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgro... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-04-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-04-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CloudHSM V2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>.\">For more information about AWS CloudH<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2104, 2105], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2108, 2109, 2110, 2111], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2113, 2114], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudhsmv2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["cloudhsm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410243, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2120], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2100, 2101, 2102, 2103, 2106, 2107, 2112, 2115, 2116, 2117, 2118, 2119, 2121, 2122, 2123], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-04-28\nx-release: v4\ntitle: AWS CloudHSM V2\ndescription: For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudhsmv2\nx-aws-signingName: cloudhsm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-04-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloudhsmv2/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2125, 2126], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudhsmv2/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-04-28: DataRow\">2017-04-28</span>", children: [2099, 2124, 2127, 2128, 2129, 2130, 2131], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-04-28, x-release:v4, title:AWS CloudHSM V2, description:For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudhsmv2, x-aws-signingName:cloudhsm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudhsmv2-2017-04-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudhsmv2/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2132], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-04-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-28, x-release:v4, title:AWS CloudHSM V2, description:For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudhsmv2, x-aws-signingName:cloudhsm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudhsmv2-2017-04-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudhsmv2/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudhsmv2/2017-04-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-04-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudhsmv2: DataRow\">amazonaws.com:cloudhsmv2</span>", children: [2097, 2098, 2133], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-04-28\nversions: { 2017-04-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-28, x-release:v4, title:AWS CloudHSM V2, description:For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS CloudHSM User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudhsmv2, x-aws-signingName:cloudhsm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudhsmv2-2017-04-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudSearch"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon CloudSearch Configuration Service</fullname> <p>You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region" target="_blank">Regions and Endpoints</a>.</p>\"><fullname>Amazon CloudSearch Configur<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2142, 2143], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2146, 2147, 2148, 2149], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2151, 2152], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudsearch"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410244, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2157], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2138, 2139, 2140, 2141, 2144, 2145, 2150, 2153, 2154, 2155, 2156, 2158, 2159, 2160], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-01-01\nx-release: v4\ntitle: Amazon CloudSearch\ndescription: <fullname>Amazon CloudSearch Configuration Service</fullname> <p>You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region" target="_blank">Regions and Endpoints</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudsearch\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloudsearch/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2162, 2163], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudsearch/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-01-01: DataRow\">2013-01-01</span>", children: [2137, 2161, 2164, 2165, 2166, 2167, 2168], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-01-01, x-release:v4, title:Amazon CloudSearch, description:<fullname>Amazon CloudSearch Configuration Service</fullname> <p>You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region" target="_blank">Regions and Endpoints</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudsearch, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudsearch-2013-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudsearch/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2169], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-01-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-01-01, x-release:v4, title:Amazon CloudSearch, description:<fullname>Amazon CloudSearch Configuration Service</fullname> <p>You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region" target="_blank">Regions and Endpoints</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, ema..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudsearch/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudsearch/2013-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudsearch: DataRow\">amazonaws.com:cloudsearch</span>", children: [2135, 2136, 2170], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-01-01\nversions: { 2013-01-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-01-01, x-release:v4, title:Amazon CloudSearch, description:<fullname>Amazon CloudSearch Configuration Service</fullname> <p>You use the Amazon CloudSearch configuration service to create, configure, and manage search domains. Configuration service requests are submitted using the AWS Query protocol. AWS Query requests are HTTP or HTTPS requests submitted via HTTP GET or POST with a query parameter named Action.</p> <p>The endpoint for configuration service requests is region-specific: cloudsearch.<i>region</i>.amazonaws.com. For example, cloudsearch.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#cloudsearch_region" target="_blank">Regions and Endpoints</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-te... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudSearch Domain"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. </p> <p>The endpoints for submitting <code>UploadDocuments</code>, <code>Search</code>, and <code>Suggest</code> requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service <code>DescribeDomains</code> action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. </p> <p>For more information, see the <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide">Amazon CloudSearch Developer Guide</a>.</p>\"><p>You use the AmazonCloudSearch2013 <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2179, 2180], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2183, 2184, 2185, 2186], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2188, 2189], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudsearchdomain"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["cloudsearch"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410245, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2195], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2175, 2176, 2177, 2178, 2181, 2182, 2187, 2190, 2191, 2192, 2193, 2194, 2196, 2197, 2198], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-01-01\nx-release: v4\ntitle: Amazon CloudSearch Domain\ndescription: <p>You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. </p> <p>The endpoints for submitting <code>UploadDocuments</code>, <code>Search</code>, and <code>Suggest</code> requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service <code>DescribeDomains</code> action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. </p> <p>For more information, see the <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide">Amazon CloudSearch Developer Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudsearchdomain\nx-aws-signingName: cloudsearch\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/cloudsearchdomain/\">https://docs.aws.amazon.com/cloudsear<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2200, 2201], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudsearchdomain/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-01-01: DataRow\">2013-01-01</span>", children: [2174, 2199, 2202, 2203, 2204, 2205, 2206], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2013-01-01, x-release:v4, title:Amazon CloudSearch Domain, description:<p>You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. </p> <p>The endpoints for submitting <code>UploadDocuments</code>, <code>Search</code>, and <code>Suggest</code> requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service <code>DescribeDomains</code> action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. </p> <p>For more information, see the <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide">Amazon CloudSearch Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudsearchdomain, x-aws-signingName:cloudsearch, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudsearchdomain-2013-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudsearchdomain/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2207], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-01-01: { added:2017-05-02T07:59:53.000Z, info:{ version:2013-01-01, x-release:v4, title:Amazon CloudSearch Domain, description:<p>You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. </p> <p>The endpoints for submitting <code>UploadDocuments</code>, <code>Search</code>, and <code>Suggest</code> requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service <code>DescribeDomains</code> action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. </p> <p>For more information, see the <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide">Amazon CloudSearch Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com,..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudsearchdomain/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudsearchdomain/2013-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudsearchdomain: DataRow\">amazonaws.com:cloudsearchdomain</span>", children: [2172, 2173, 2208], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2013-01-01\nversions: { 2013-01-01:{ added:2017-05-02T07:59:53.000Z, info:{ version:2013-01-01, x-release:v4, title:Amazon CloudSearch Domain, description:<p>You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. </p> <p>The endpoints for submitting <code>UploadDocuments</code>, <code>Search</code>, and <code>Suggest</code> requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service <code>DescribeDomains</code> action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. </p> <p>For more information, see the <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide">Amazon CloudSearch Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike R... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CloudTrail"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>CloudTrail</fullname> <p>This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail.</p> <p>CloudTrail is a web service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. The recorded information includes the identity of the user, the start time of the Amazon Web Services API call, the source IP address, the request parameters, and the response elements returned by the service.</p> <note> <p>As an alternative to the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide programmatic access to CloudTrail. For example, the SDKs handle cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools to Build on Amazon Web Services</a>.</p> </note> <p>See the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-user-guide.html">CloudTrail User Guide</a> for information about the data that is included with each Amazon Web Services API call listed in the log files.</p>\"><fullname>CloudTrail</fullname> <p>Th<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2217, 2218], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2221, 2222, 2223, 2224], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2226, 2227], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cloudtrail"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410246, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2232], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2213, 2214, 2215, 2216, 2219, 2220, 2225, 2228, 2229, 2230, 2231, 2233, 2234, 2235], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-11-01\nx-release: v4\ntitle: AWS CloudTrail\ndescription: <fullname>CloudTrail</fullname> <p>This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail.</p> <p>CloudTrail is a web service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. The recorded information includes the identity of the user, the start time of the Amazon Web Services API call, the source IP address, the request parameters, and the response elements returned by the service.</p> <note> <p>As an alternative to the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide programmatic access to CloudTrail. For example, the SDKs handle cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools to Build on Amazon Web Services</a>.</p> </note> <p>See the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-user-guide.html">CloudTrail User Guide</a> for information about the data that is included with each Amazon Web Services API call listed in the log files.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cloudtrail\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cloudtrail/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2237, 2238], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cloudtrail/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-11-01: DataRow\">2013-11-01</span>", children: [2212, 2236, 2239, 2240, 2241, 2242, 2243], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-11-01, x-release:v4, title:AWS CloudTrail, description:<fullname>CloudTrail</fullname> <p>This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail.</p> <p>CloudTrail is a web service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. The recorded information includes the identity of the user, the start time of the Amazon Web Services API call, the source IP address, the request parameters, and the response elements returned by the service.</p> <note> <p>As an alternative to the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide programmatic access to CloudTrail. For example, the SDKs handle cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cloudtrail, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cloudtrail-2013-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudtrail/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2244], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-11-01, x-release:v4, title:AWS CloudTrail, description:<fullname>CloudTrail</fullname> <p>This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail.</p> <p>CloudTrail is a web service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. The recorded information includes the identity of the user, the start time of the Amazon Web Services API call, the source IP address, the request parameters, and the response elements returned by the service.</p> <note> <p>As an alternative to the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide programmatic access to CloudTrail. For example, the SDKs handle cryptographically signing requests, managing errors, and retrying requests ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cloudtrail/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cloudtrail/2013-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cloudtrail: DataRow\">amazonaws.com:cloudtrail</span>", children: [2210, 2211, 2245], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-11-01\nversions: { 2013-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-11-01, x-release:v4, title:AWS CloudTrail, description:<fullname>CloudTrail</fullname> <p>This is the CloudTrail API Reference. It provides descriptions of actions, data types, common parameters, and common errors for CloudTrail.</p> <p>CloudTrail is a web service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. The recorded information includes the identity of the user, the start time of the Amazon Web Services API call, the source IP address, the request parameters, and the response elements returned by the service.</p> <note> <p>As an alternative to the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide programmatic access to CloudTrail. For example, the SDKs handle cryptographically signing requests, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["CodeArtifact"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version">package versions</a>, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the <b> <code>npm</code> </b> CLI, the Maven CLI (<b> <code>mvn</code> </b>), and <b> <code>pip</code> </b>.</p> </li> <li> <p> <b>Domain</b>: Repositories are aggregated into a higher-level entity known as a <i>domain</i>. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).</p> <p>Each repository is a member of a single domain and can't be moved to a different domain.</p> <p>The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.</p> <p>Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.</p> </li> <li> <p> <b>Package</b>: A <i>package</i> is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, and <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a> package formats.</p> <p>In CodeArtifact, a package consists of:</p> <ul> <li> <p>A <i>name</i> (for example, <code>webpack</code> is the name of a popular npm package)</p> </li> <li> <p>An optional namespace (for example, <code>@types</code> in <code>@types/node</code>)</p> </li> <li> <p>A set of versions (for example, <code>1.0.0</code>, <code>1.0.1</code>, <code>1.0.2</code>, etc.)</p> </li> <li> <p> Package-level metadata (for example, npm tags)</p> </li> </ul> </li> <li> <p> <b>Package version</b>: A version of a package, such as <code>@types/node 12.6.9</code>. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the <a href="https://semver.org/">Semantic Versioning specification</a>. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.</p> </li> <li> <p> <b>Upstream repository</b>: One repository is <i>upstream</i> of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.</p> </li> <li> <p> <b>Asset</b>: An individual file stored in CodeArtifact associated with a package version, such as an npm <code>.tgz</code> file or Maven POM and JAR files.</p> </li> </ul> <p>CodeArtifact supports these operations:</p> <ul> <li> <p> <code>AssociateExternalConnection</code>: Adds an existing external connection to a repository. </p> </li> <li> <p> <code>CopyPackageVersions</code>: Copies package versions from one repository to another repository in the same domain.</p> </li> <li> <p> <code>CreateDomain</code>: Creates a domain</p> </li> <li> <p> <code>CreateRepository</code>: Creates a CodeArtifact repository in a domain. </p> </li> <li> <p> <code>DeleteDomain</code>: Deletes a domain. You cannot delete a domain that contains repositories. </p> </li> <li> <p> <code>DeleteDomainPermissionsPolicy</code>: Deletes the resource policy that is set on a domain.</p> </li> <li> <p> <code>DeletePackageVersions</code>: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DeleteRepository</code>: Deletes a repository. </p> </li> <li> <p> <code>DeleteRepositoryPermissionsPolicy</code>: Deletes the resource policy that is set on a repository.</p> </li> <li> <p> <code>DescribeDomain</code>: Returns a <code>DomainDescription</code> object that contains information about the requested domain.</p> </li> <li> <p> <code>DescribePackageVersion</code>: Returns a <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">PackageVersionDescription</a> object that contains details about a package version. </p> </li> <li> <p> <code>DescribeRepository</code>: Returns a <code>RepositoryDescription</code> object that contains detailed information about the requested repository. </p> </li> <li> <p> <code>DisposePackageVersions</code>: Disposes versions of a package. A package version with the status <code>Disposed</code> cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DisassociateExternalConnection</code>: Removes an existing external connection from a repository. </p> </li> <li> <p> <code>GetAuthorizationToken</code>: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.</p> </li> <li> <p> <code>GetDomainPermissionsPolicy</code>: Returns the policy of a resource that is attached to the specified domain. </p> </li> <li> <p> <code>GetPackageVersionAsset</code>: Returns the contents of an asset that is in a package version. </p> </li> <li> <p> <code>GetPackageVersionReadme</code>: Gets the readme file or descriptive text for a package version.</p> </li> <li> <p> <code>GetRepositoryEndpoint</code>: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul> </li> <li> <p> <code>GetRepositoryPermissionsPolicy</code>: Returns the resource policy that is set on a repository. </p> </li> <li> <p> <code>ListDomains</code>: Returns a list of <code>DomainSummary</code> objects. Each returned <code>DomainSummary</code> object contains information about a domain.</p> </li> <li> <p> <code>ListPackages</code>: Lists the packages in a repository.</p> </li> <li> <p> <code>ListPackageVersionAssets</code>: Lists the assets for a given package version.</p> </li> <li> <p> <code>ListPackageVersionDependencies</code>: Returns a list of the direct dependencies for a package version. </p> </li> <li> <p> <code>ListPackageVersions</code>: Returns a list of package versions for a specified package in a repository.</p> </li> <li> <p> <code>ListRepositories</code>: Returns a list of repositories owned by the AWS account that called this method.</p> </li> <li> <p> <code>ListRepositoriesInDomain</code>: Returns a list of the repositories in a domain.</p> </li> <li> <p> <code>PutDomainPermissionsPolicy</code>: Attaches a resource policy to a domain.</p> </li> <li> <p> <code>PutRepositoryPermissionsPolicy</code>: Sets the resource policy on a repository that specifies permissions to access it. </p> </li> <li> <p> <code>UpdatePackageVersionsStatus</code>: Updates the status of one or more versions of a package.</p> </li> <li> <p> <code>UpdateRepository</code>: Updates the properties of a repository.</p> </li> </ul>\"><p> AWS CodeArtifact is a fully manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2254, 2255], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2258, 2259, 2260, 2261], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2263, 2264], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codeartifact"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["codeartifact"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410247, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2270], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2250, 2251, 2252, 2253, 2256, 2257, 2262, 2265, 2266, 2267, 2268, 2269, 2271, 2272, 2273], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-22\nx-release: v4\ntitle: CodeArtifact\ndescription: <p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version">package versions</a>, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the <b> <code>npm</code> </b> CLI, the Maven CLI (<b> <code>mvn</code> </b>), and <b> <code>pip</code> </b>.</p> </li> <li> <p> <b>Domain</b>: Repositories are aggregated into a higher-level entity known as a <i>domain</i>. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).</p> <p>Each repository is a member of a single domain and can't be moved to a different domain.</p> <p>The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.</p> <p>Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.</p> </li> <li> <p> <b>Package</b>: A <i>package</i> is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-npm.html">npm</a>, <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-python.html">PyPI</a>, and <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/using-maven">Maven</a> package formats.</p> <p>In CodeArtifact, a package consists of:</p> <ul> <li> <p>A <i>name</i> (for example, <code>webpack</code> is the name of a popular npm package)</p> </li> <li> <p>An optional namespace (for example, <code>@types</code> in <code>@types/node</code>)</p> </li> <li> <p>A set of versions (for example, <code>1.0.0</code>, <code>1.0.1</code>, <code>1.0.2</code>, etc.)</p> </li> <li> <p> Package-level metadata (for example, npm tags)</p> </li> </ul> </li> <li> <p> <b>Package version</b>: A version of a package, such as <code>@types/node 12.6.9</code>. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the <a href="https://semver.org/">Semantic Versioning specification</a>. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.</p> </li> <li> <p> <b>Upstream repository</b>: One repository is <i>upstream</i> of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.</p> </li> <li> <p> <b>Asset</b>: An individual file stored in CodeArtifact associated with a package version, such as an npm <code>.tgz</code> file or Maven POM and JAR files.</p> </li> </ul> <p>CodeArtifact supports these operations:</p> <ul> <li> <p> <code>AssociateExternalConnection</code>: Adds an existing external connection to a repository. </p> </li> <li> <p> <code>CopyPackageVersions</code>: Copies package versions from one repository to another repository in the same domain.</p> </li> <li> <p> <code>CreateDomain</code>: Creates a domain</p> </li> <li> <p> <code>CreateRepository</code>: Creates a CodeArtifact repository in a domain. </p> </li> <li> <p> <code>DeleteDomain</code>: Deletes a domain. You cannot delete a domain that contains repositories. </p> </li> <li> <p> <code>DeleteDomainPermissionsPolicy</code>: Deletes the resource policy that is set on a domain.</p> </li> <li> <p> <code>DeletePackageVersions</code>: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DeleteRepository</code>: Deletes a repository. </p> </li> <li> <p> <code>DeleteRepositoryPermissionsPolicy</code>: Deletes the resource policy that is set on a repository.</p> </li> <li> <p> <code>DescribeDomain</code>: Returns a <code>DomainDescription</code> object that contains information about the requested domain.</p> </li> <li> <p> <code>DescribePackageVersion</code>: Returns a <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageVersionDescription.html">PackageVersionDescription</a> object that contains details about a package version. </p> </li> <li> <p> <code>DescribeRepository</code>: Returns a <code>RepositoryDescription</code> object that contains detailed information about the requested repository. </p> </li> <li> <p> <code>DisposePackageVersions</code>: Disposes versions of a package. A package version with the status <code>Disposed</code> cannot be restored because they have been permanently removed from storage.</p> </li> <li> <p> <code>DisassociateExternalConnection</code>: Removes an existing external connection from a repository. </p> </li> <li> <p> <code>GetAuthorizationToken</code>: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.</p> </li> <li> <p> <code>GetDomainPermissionsPolicy</code>: Returns the policy of a resource that is attached to the specified domain. </p> </li> <li> <p> <code>GetPackageVersionAsset</code>: Returns the contents of an asset that is in a package version. </p> </li> <li> <p> <code>GetPackageVersionReadme</code>: Gets the readme file or descriptive text for a package version.</p> </li> <li> <p> <code>GetRepositoryEndpoint</code>: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format: </p> <ul> <li> <p> <code>npm</code> </p> </li> <li> <p> <code>pypi</code> </p> </li> <li> <p> <code>maven</code> </p> </li> </ul> </li> <li> <p> <code>GetRepositoryPermissionsPolicy</code>: Returns the resource policy that is set on a repository. </p> </li> <li> <p> <code>ListDomains</code>: Returns a list of <code>DomainSummary</code> objects. Each returned <code>DomainSummary</code> object contains information about a domain.</p> </li> <li> <p> <code>ListPackages</code>: Lists the packages in a repository.</p> </li> <li> <p> <code>ListPackageVersionAssets</code>: Lists the assets for a given package version.</p> </li> <li> <p> <code>ListPackageVersionDependencies</code>: Returns a list of the direct dependencies for a package version. </p> </li> <li> <p> <code>ListPackageVersions</code>: Returns a list of package versions for a specified package in a repository.</p> </li> <li> <p> <code>ListRepositories</code>: Returns a list of repositories owned by the AWS account that called this method.</p> </li> <li> <p> <code>ListRepositoriesInDomain</code>: Returns a list of the repositories in a domain.</p> </li> <li> <p> <code>PutDomainPermissionsPolicy</code>: Attaches a resource policy to a domain.</p> </li> <li> <p> <code>PutRepositoryPermissionsPolicy</code>: Sets the resource policy on a repository that specifies permissions to access it. </p> </li> <li> <p> <code>UpdatePackageVersionsStatus</code>: Updates the status of one or more versions of a package.</p> </li> <li> <p> <code>UpdateRepository</code>: Updates the properties of a repository.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codeartifact\nx-aws-signingName: codeartifact\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codeartifact/\">https://docs.aws.amazon.com/codeartif<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2275, 2276], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codeartifact/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-22: DataRow\">2018-09-22</span>", children: [2249, 2274, 2277, 2278, 2279, 2280], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\ninfo: { version:2018-09-22, x-release:v4, title:CodeArtifact, description:<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version">package versions</a>, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any s..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codeartifact, x-aws-signingName:codeartifact, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codeartifact-2018-09-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeartifact/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2281], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-22: { added:2020-07-10T08:57:08.681Z, info:{ version:2018-09-22, x-release:v4, title:CodeArtifact, description:<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version">package versions</a>, each of which maps to a set of assets, or files. Repositorie..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeartifact/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeartifact/2018-09-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codeartifact: DataRow\">amazonaws.com:codeartifact</span>", children: [2247, 2248, 2282], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\npreferred: 2018-09-22\nversions: { 2018-09-22:{ added:2020-07-10T08:57:08.681Z, info:{ version:2018-09-22, x-release:v4, title:CodeArtifact, description:<p> AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client. </p> <p> <b>AWS CodeArtifact Components</b> </p> <p>Use the information in this guide to help you work with the following CodeArtifact components:</p> <ul> <li> <p> <b>Repository</b>: A CodeArtifact repository contains a set of <a href="https://docs.aws.amazon.com/codeartifact/latest/ug/welcome.html#welcome-concepts-package-version">package versions</a>, each of which maps to... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-10-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-10-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeBuild"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>CodeBuild</fullname> <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in CodeBuild to use your own build tools. CodeBuild scales automatically to meet peak build requests. You pay only for the build time you consume. For more information about CodeBuild, see the <i> <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">CodeBuild User Guide</a>.</i> </p>\"><fullname>CodeBuild</fullname> <p>Cod<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2291, 2292], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2295, 2296, 2297, 2298], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2300, 2301], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codebuild"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410248, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2306], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2287, 2288, 2289, 2290, 2293, 2294, 2299, 2302, 2303, 2304, 2305, 2307, 2308, 2309], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-10-06\nx-release: v4\ntitle: AWS CodeBuild\ndescription: <fullname>CodeBuild</fullname> <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in CodeBuild to use your own build tools. CodeBuild scales automatically to meet peak build requests. You pay only for the build time you consume. For more information about CodeBuild, see the <i> <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">CodeBuild User Guide</a>.</i> </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codebuild\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-10-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/codebuild/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2311, 2312], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codebuild/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-10-06: DataRow\">2016-10-06</span>", children: [2286, 2310, 2313, 2314, 2315, 2316, 2317], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-10-06, x-release:v4, title:AWS CodeBuild, description:<fullname>CodeBuild</fullname> <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in CodeBuild to use your own build tools. CodeBuild scales automatically to meet peak build requests. You pay only for the build time you consume. For more information about CodeBuild, see the <i> <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">CodeBuild User Guide</a>.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codebuild, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codebuild-2016-10-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codebuild/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2318], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-10-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-06, x-release:v4, title:AWS CodeBuild, description:<fullname>CodeBuild</fullname> <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in CodeBuild to use your own build tools. CodeBuild scales automatically to meet peak build requests. You pay only for the build time you consume. For more information about CodeBuild, see the <i> <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">CodeBuild User Guide</a>.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codebuild/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codebuild/2016-10-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-10-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codebuild: DataRow\">amazonaws.com:codebuild</span>", children: [2284, 2285, 2319], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-10-06\nversions: { 2016-10-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-06, x-release:v4, title:AWS CodeBuild, description:<fullname>CodeBuild</fullname> <p>CodeBuild is a fully managed build service in the cloud. CodeBuild compiles your source code, runs unit tests, and produces artifacts that are ready to deploy. CodeBuild eliminates the need to provision, manage, and scale your own build servers. It provides prepackaged build environments for the most popular programming languages and build tools, such as Apache Maven, Gradle, and more. You can also fully customize build environments in CodeBuild to use your own build tools. CodeBuild scales automatically to meet peak build requests. You pay only for the build time you consume. For more information about CodeBuild, see the <i> <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/welcome.html">CodeBuild User Guide</a>.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundCo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-04-13"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-04-13"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeCommit"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CodeCommit</fullname> <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.</p> <p>You can use the AWS CodeCommit API to work with the following objects:</p> <p>Repositories, by calling the following:</p> <ul> <li> <p> <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p> </li> <li> <p> <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p> </li> <li> <p> <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p> </li> <li> <p> <a>GetRepository</a>, which returns information about a specified repository.</p> </li> <li> <p> <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p> </li> <li> <p> <a>UpdateRepositoryDescription</a>, which sets or updates the description of the repository.</p> </li> <li> <p> <a>UpdateRepositoryName</a>, which changes the name of the repository. If you change the name of a repository, no other users of that repository can access it until you send them the new HTTPS or SSH URL to use.</p> </li> </ul> <p>Branches, by calling the following:</p> <ul> <li> <p> <a>CreateBranch</a>, which creates a branch in a specified repository.</p> </li> <li> <p> <a>DeleteBranch</a>, which deletes the specified branch in a repository unless it is the default branch.</p> </li> <li> <p> <a>GetBranch</a>, which returns information about a specified branch.</p> </li> <li> <p> <a>ListBranches</a>, which lists all branches for a specified repository.</p> </li> <li> <p> <a>UpdateDefaultBranch</a>, which changes the default branch for a repository.</p> </li> </ul> <p>Files, by calling the following:</p> <ul> <li> <p> <a>DeleteFile</a>, which deletes the content of a specified file from a specified branch.</p> </li> <li> <p> <a>GetBlob</a>, which returns the base-64 encoded content of an individual Git blob object in a repository.</p> </li> <li> <p> <a>GetFile</a>, which returns the base-64 encoded content of a specified file.</p> </li> <li> <p> <a>GetFolder</a>, which returns the contents of a specified folder or directory.</p> </li> <li> <p> <a>PutFile</a>, which adds or modifies a single file in a specified repository and branch.</p> </li> </ul> <p>Commits, by calling the following:</p> <ul> <li> <p> <a>BatchGetCommits</a>, which returns information about one or more commits in a repository.</p> </li> <li> <p> <a>CreateCommit</a>, which creates a commit for changes to a repository.</p> </li> <li> <p> <a>GetCommit</a>, which returns information about a commit, including commit messages and author and committer information.</p> </li> <li> <p> <a>GetDifferences</a>, which returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID, or other fully qualified reference).</p> </li> </ul> <p>Merges, by calling the following:</p> <ul> <li> <p> <a>BatchDescribeMergeConflicts</a>, which returns information about conflicts in a merge between commits in a repository.</p> </li> <li> <p> <a>CreateUnreferencedMergeCommit</a>, which creates an unreferenced commit between two branches or commits for the purpose of comparing them and identifying any potential conflicts.</p> </li> <li> <p> <a>DescribeMergeConflicts</a>, which returns information about merge conflicts between the base, source, and destination versions of a file in a potential merge.</p> </li> <li> <p> <a>GetMergeCommit</a>, which returns information about the merge between a source and destination commit. </p> </li> <li> <p> <a>GetMergeConflicts</a>, which returns information about merge conflicts between the source and destination branch in a pull request.</p> </li> <li> <p> <a>GetMergeOptions</a>, which returns information about the available merge options between two branches or commit specifiers.</p> </li> <li> <p> <a>MergeBranchesByFastForward</a>, which merges two branches using the fast-forward merge option.</p> </li> <li> <p> <a>MergeBranchesBySquash</a>, which merges two branches using the squash merge option.</p> </li> <li> <p> <a>MergeBranchesByThreeWay</a>, which merges two branches using the three-way merge option.</p> </li> </ul> <p>Pull requests, by calling the following:</p> <ul> <li> <p> <a>CreatePullRequest</a>, which creates a pull request in a specified repository.</p> </li> <li> <p> <a>CreatePullRequestApprovalRule</a>, which creates an approval rule for a specified pull request.</p> </li> <li> <p> <a>DeletePullRequestApprovalRule</a>, which deletes an approval rule for a specified pull request.</p> </li> <li> <p> <a>DescribePullRequestEvents</a>, which returns information about one or more pull request events.</p> </li> <li> <p> <a>EvaluatePullRequestApprovalRules</a>, which evaluates whether a pull request has met all the conditions specified in its associated approval rules.</p> </li> <li> <p> <a>GetCommentsForPullRequest</a>, which returns information about comments on a specified pull request.</p> </li> <li> <p> <a>GetPullRequest</a>, which returns information about a specified pull request.</p> </li> <li> <p> <a>GetPullRequestApprovalStates</a>, which returns information about the approval states for a specified pull request.</p> </li> <li> <p> <a>GetPullRequestOverrideState</a>, which returns information about whether approval rules have been set aside (overriden) for a pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.</p> </li> <li> <p> <a>ListPullRequests</a>, which lists all pull requests for a repository.</p> </li> <li> <p> <a>MergePullRequestByFastForward</a>, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the fast-forward merge option.</p> </li> <li> <p> <a>MergePullRequestBySquash</a>, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the squash merge option.</p> </li> <li> <p> <a>MergePullRequestByThreeWay</a>. which merges the source destination branch of a pull request into the specified destination branch for that pull request using the three-way merge option.</p> </li> <li> <p> <a>OverridePullRequestApprovalRules</a>, which sets aside all approval rule requirements for a pull request.</p> </li> <li> <p> <a>PostCommentForPullRequest</a>, which posts a comment to a pull request at the specified line, file, or request.</p> </li> <li> <p> <a>UpdatePullRequestApprovalRuleContent</a>, which updates the structure of an approval rule for a pull request.</p> </li> <li> <p> <a>UpdatePullRequestApprovalState</a>, which updates the state of an approval on a pull request.</p> </li> <li> <p> <a>UpdatePullRequestDescription</a>, which updates the description of a pull request.</p> </li> <li> <p> <a>UpdatePullRequestStatus</a>, which updates the status of a pull request.</p> </li> <li> <p> <a>UpdatePullRequestTitle</a>, which updates the title of a pull request.</p> </li> </ul> <p>Approval rule templates, by calling the following:</p> <ul> <li> <p> <a>AssociateApprovalRuleTemplateWithRepository</a>, which associates a template with a specified repository. After the template is associated with a repository, AWS CodeCommit creates approval rules that match the template conditions on every pull request created in the specified repository.</p> </li> <li> <p> <a>BatchAssociateApprovalRuleTemplateWithRepositories</a>, which associates a template with one or more specified repositories. After the template is associated with a repository, AWS CodeCommit creates approval rules that match the template conditions on every pull request created in the specified repositories.</p> </li> <li> <p> <a>BatchDisassociateApprovalRuleTemplateFromRepositories</a>, which removes the association between a template and specified repositories so that approval rules based on the template are not automatically created when pull requests are created in those repositories.</p> </li> <li> <p> <a>CreateApprovalRuleTemplate</a>, which creates a template for approval rules that can then be associated with one or more repositories in your AWS account.</p> </li> <li> <p> <a>DeleteApprovalRuleTemplate</a>, which deletes the specified template. It does not remove approval rules on pull requests already created with the template.</p> </li> <li> <p> <a>DisassociateApprovalRuleTemplateFromRepository</a>, which removes the association between a template and a repository so that approval rules based on the template are not automatically created when pull requests are created in the specified repository.</p> </li> <li> <p> <a>GetApprovalRuleTemplate</a>, which returns information about an approval rule template.</p> </li> <li> <p> <a>ListApprovalRuleTemplates</a>, which lists all approval rule templates in the AWS Region in your AWS account.</p> </li> <li> <p> <a>ListAssociatedApprovalRuleTemplatesForRepository</a>, which lists all approval rule templates that are associated with a specified repository.</p> </li> <li> <p> <a>ListRepositoriesForApprovalRuleTemplate</a>, which lists all repositories associated with the specified approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateDescription</a>, which updates the description of an approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateName</a>, which updates the name of an approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateContent</a>, which updates the content of an approval rule template.</p> </li> </ul> <p>Comments in a repository, by calling the following:</p> <ul> <li> <p> <a>DeleteCommentContent</a>, which deletes the content of a comment on a commit in a repository.</p> </li> <li> <p> <a>GetComment</a>, which returns information about a comment on a commit.</p> </li> <li> <p> <a>GetCommentReactions</a>, which returns information about emoji reactions to comments.</p> </li> <li> <p> <a>GetCommentsForComparedCommit</a>, which returns information about comments on the comparison between two commit specifiers in a repository.</p> </li> <li> <p> <a>PostCommentForComparedCommit</a>, which creates a comment on the comparison between two commit specifiers in a repository.</p> </li> <li> <p> <a>PostCommentReply</a>, which creates a reply to a comment.</p> </li> <li> <p> <a>PutCommentReaction</a>, which creates or updates an emoji reaction to a comment.</p> </li> <li> <p> <a>UpdateComment</a>, which updates the content of a comment on a commit in a repository.</p> </li> </ul> <p>Tags used to tag resources in AWS CodeCommit (not Git tags), by calling the following:</p> <ul> <li> <p> <a>ListTagsForResource</a>, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit.</p> </li> <li> <p> <a>TagResource</a>, which adds or updates tags for a resource in AWS CodeCommit.</p> </li> <li> <p> <a>UntagResource</a>, which removes tags for a resource in AWS CodeCommit.</p> </li> </ul> <p>Triggers, by calling the following:</p> <ul> <li> <p> <a>GetRepositoryTriggers</a>, which returns information about triggers configured for a repository.</p> </li> <li> <p> <a>PutRepositoryTriggers</a>, which replaces all triggers for a repository and can be used to create or delete triggers.</p> </li> <li> <p> <a>TestRepositoryTriggers</a>, which tests the functionality of a repository trigger by sending data to the trigger target.</p> </li> </ul> <p>For information about how to use AWS CodeCommit, see the <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">AWS CodeCommit User Guide</a>.</p>\"><fullname>AWS CodeCommit</fullname> <<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2328, 2329], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2332, 2333, 2334, 2335], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2337, 2338], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codecommit"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410249, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2343], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2324, 2325, 2326, 2327, 2330, 2331, 2336, 2339, 2340, 2341, 2342, 2344, 2345, 2346], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-04-13\nx-release: v4\ntitle: AWS CodeCommit\ndescription: <fullname>AWS CodeCommit</fullname> <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.</p> <p>You can use the AWS CodeCommit API to work with the following objects:</p> <p>Repositories, by calling the following:</p> <ul> <li> <p> <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p> </li> <li> <p> <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p> </li> <li> <p> <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p> </li> <li> <p> <a>GetRepository</a>, which returns information about a specified repository.</p> </li> <li> <p> <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p> </li> <li> <p> <a>UpdateRepositoryDescription</a>, which sets or updates the description of the repository.</p> </li> <li> <p> <a>UpdateRepositoryName</a>, which changes the name of the repository. If you change the name of a repository, no other users of that repository can access it until you send them the new HTTPS or SSH URL to use.</p> </li> </ul> <p>Branches, by calling the following:</p> <ul> <li> <p> <a>CreateBranch</a>, which creates a branch in a specified repository.</p> </li> <li> <p> <a>DeleteBranch</a>, which deletes the specified branch in a repository unless it is the default branch.</p> </li> <li> <p> <a>GetBranch</a>, which returns information about a specified branch.</p> </li> <li> <p> <a>ListBranches</a>, which lists all branches for a specified repository.</p> </li> <li> <p> <a>UpdateDefaultBranch</a>, which changes the default branch for a repository.</p> </li> </ul> <p>Files, by calling the following:</p> <ul> <li> <p> <a>DeleteFile</a>, which deletes the content of a specified file from a specified branch.</p> </li> <li> <p> <a>GetBlob</a>, which returns the base-64 encoded content of an individual Git blob object in a repository.</p> </li> <li> <p> <a>GetFile</a>, which returns the base-64 encoded content of a specified file.</p> </li> <li> <p> <a>GetFolder</a>, which returns the contents of a specified folder or directory.</p> </li> <li> <p> <a>PutFile</a>, which adds or modifies a single file in a specified repository and branch.</p> </li> </ul> <p>Commits, by calling the following:</p> <ul> <li> <p> <a>BatchGetCommits</a>, which returns information about one or more commits in a repository.</p> </li> <li> <p> <a>CreateCommit</a>, which creates a commit for changes to a repository.</p> </li> <li> <p> <a>GetCommit</a>, which returns information about a commit, including commit messages and author and committer information.</p> </li> <li> <p> <a>GetDifferences</a>, which returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID, or other fully qualified reference).</p> </li> </ul> <p>Merges, by calling the following:</p> <ul> <li> <p> <a>BatchDescribeMergeConflicts</a>, which returns information about conflicts in a merge between commits in a repository.</p> </li> <li> <p> <a>CreateUnreferencedMergeCommit</a>, which creates an unreferenced commit between two branches or commits for the purpose of comparing them and identifying any potential conflicts.</p> </li> <li> <p> <a>DescribeMergeConflicts</a>, which returns information about merge conflicts between the base, source, and destination versions of a file in a potential merge.</p> </li> <li> <p> <a>GetMergeCommit</a>, which returns information about the merge between a source and destination commit. </p> </li> <li> <p> <a>GetMergeConflicts</a>, which returns information about merge conflicts between the source and destination branch in a pull request.</p> </li> <li> <p> <a>GetMergeOptions</a>, which returns information about the available merge options between two branches or commit specifiers.</p> </li> <li> <p> <a>MergeBranchesByFastForward</a>, which merges two branches using the fast-forward merge option.</p> </li> <li> <p> <a>MergeBranchesBySquash</a>, which merges two branches using the squash merge option.</p> </li> <li> <p> <a>MergeBranchesByThreeWay</a>, which merges two branches using the three-way merge option.</p> </li> </ul> <p>Pull requests, by calling the following:</p> <ul> <li> <p> <a>CreatePullRequest</a>, which creates a pull request in a specified repository.</p> </li> <li> <p> <a>CreatePullRequestApprovalRule</a>, which creates an approval rule for a specified pull request.</p> </li> <li> <p> <a>DeletePullRequestApprovalRule</a>, which deletes an approval rule for a specified pull request.</p> </li> <li> <p> <a>DescribePullRequestEvents</a>, which returns information about one or more pull request events.</p> </li> <li> <p> <a>EvaluatePullRequestApprovalRules</a>, which evaluates whether a pull request has met all the conditions specified in its associated approval rules.</p> </li> <li> <p> <a>GetCommentsForPullRequest</a>, which returns information about comments on a specified pull request.</p> </li> <li> <p> <a>GetPullRequest</a>, which returns information about a specified pull request.</p> </li> <li> <p> <a>GetPullRequestApprovalStates</a>, which returns information about the approval states for a specified pull request.</p> </li> <li> <p> <a>GetPullRequestOverrideState</a>, which returns information about whether approval rules have been set aside (overriden) for a pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.</p> </li> <li> <p> <a>ListPullRequests</a>, which lists all pull requests for a repository.</p> </li> <li> <p> <a>MergePullRequestByFastForward</a>, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the fast-forward merge option.</p> </li> <li> <p> <a>MergePullRequestBySquash</a>, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the squash merge option.</p> </li> <li> <p> <a>MergePullRequestByThreeWay</a>. which merges the source destination branch of a pull request into the specified destination branch for that pull request using the three-way merge option.</p> </li> <li> <p> <a>OverridePullRequestApprovalRules</a>, which sets aside all approval rule requirements for a pull request.</p> </li> <li> <p> <a>PostCommentForPullRequest</a>, which posts a comment to a pull request at the specified line, file, or request.</p> </li> <li> <p> <a>UpdatePullRequestApprovalRuleContent</a>, which updates the structure of an approval rule for a pull request.</p> </li> <li> <p> <a>UpdatePullRequestApprovalState</a>, which updates the state of an approval on a pull request.</p> </li> <li> <p> <a>UpdatePullRequestDescription</a>, which updates the description of a pull request.</p> </li> <li> <p> <a>UpdatePullRequestStatus</a>, which updates the status of a pull request.</p> </li> <li> <p> <a>UpdatePullRequestTitle</a>, which updates the title of a pull request.</p> </li> </ul> <p>Approval rule templates, by calling the following:</p> <ul> <li> <p> <a>AssociateApprovalRuleTemplateWithRepository</a>, which associates a template with a specified repository. After the template is associated with a repository, AWS CodeCommit creates approval rules that match the template conditions on every pull request created in the specified repository.</p> </li> <li> <p> <a>BatchAssociateApprovalRuleTemplateWithRepositories</a>, which associates a template with one or more specified repositories. After the template is associated with a repository, AWS CodeCommit creates approval rules that match the template conditions on every pull request created in the specified repositories.</p> </li> <li> <p> <a>BatchDisassociateApprovalRuleTemplateFromRepositories</a>, which removes the association between a template and specified repositories so that approval rules based on the template are not automatically created when pull requests are created in those repositories.</p> </li> <li> <p> <a>CreateApprovalRuleTemplate</a>, which creates a template for approval rules that can then be associated with one or more repositories in your AWS account.</p> </li> <li> <p> <a>DeleteApprovalRuleTemplate</a>, which deletes the specified template. It does not remove approval rules on pull requests already created with the template.</p> </li> <li> <p> <a>DisassociateApprovalRuleTemplateFromRepository</a>, which removes the association between a template and a repository so that approval rules based on the template are not automatically created when pull requests are created in the specified repository.</p> </li> <li> <p> <a>GetApprovalRuleTemplate</a>, which returns information about an approval rule template.</p> </li> <li> <p> <a>ListApprovalRuleTemplates</a>, which lists all approval rule templates in the AWS Region in your AWS account.</p> </li> <li> <p> <a>ListAssociatedApprovalRuleTemplatesForRepository</a>, which lists all approval rule templates that are associated with a specified repository.</p> </li> <li> <p> <a>ListRepositoriesForApprovalRuleTemplate</a>, which lists all repositories associated with the specified approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateDescription</a>, which updates the description of an approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateName</a>, which updates the name of an approval rule template.</p> </li> <li> <p> <a>UpdateApprovalRuleTemplateContent</a>, which updates the content of an approval rule template.</p> </li> </ul> <p>Comments in a repository, by calling the following:</p> <ul> <li> <p> <a>DeleteCommentContent</a>, which deletes the content of a comment on a commit in a repository.</p> </li> <li> <p> <a>GetComment</a>, which returns information about a comment on a commit.</p> </li> <li> <p> <a>GetCommentReactions</a>, which returns information about emoji reactions to comments.</p> </li> <li> <p> <a>GetCommentsForComparedCommit</a>, which returns information about comments on the comparison between two commit specifiers in a repository.</p> </li> <li> <p> <a>PostCommentForComparedCommit</a>, which creates a comment on the comparison between two commit specifiers in a repository.</p> </li> <li> <p> <a>PostCommentReply</a>, which creates a reply to a comment.</p> </li> <li> <p> <a>PutCommentReaction</a>, which creates or updates an emoji reaction to a comment.</p> </li> <li> <p> <a>UpdateComment</a>, which updates the content of a comment on a commit in a repository.</p> </li> </ul> <p>Tags used to tag resources in AWS CodeCommit (not Git tags), by calling the following:</p> <ul> <li> <p> <a>ListTagsForResource</a>, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit.</p> </li> <li> <p> <a>TagResource</a>, which adds or updates tags for a resource in AWS CodeCommit.</p> </li> <li> <p> <a>UntagResource</a>, which removes tags for a resource in AWS CodeCommit.</p> </li> </ul> <p>Triggers, by calling the following:</p> <ul> <li> <p> <a>GetRepositoryTriggers</a>, which returns information about triggers configured for a repository.</p> </li> <li> <p> <a>PutRepositoryTriggers</a>, which replaces all triggers for a repository and can be used to create or delete triggers.</p> </li> <li> <p> <a>TestRepositoryTriggers</a>, which tests the functionality of a repository trigger by sending data to the trigger target.</p> </li> </ul> <p>For information about how to use AWS CodeCommit, see the <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">AWS CodeCommit User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codecommit\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-04-13<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/codecommit/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2348, 2349], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codecommit/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-04-13: DataRow\">2015-04-13</span>", children: [2323, 2347, 2350, 2351, 2352, 2353, 2354], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-04-13, x-release:v4, title:AWS CodeCommit, description:<fullname>AWS CodeCommit</fullname> <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.</p> <p>You can use the AWS CodeCommit API to work with the following objects:</p> <p>Repositories, by calling the following:</p> <ul> <li> <p> <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p> </li> <li> <p> <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p> </li> <li> <p> <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p> </li> <li> <p> <a>GetRepository</a>, which returns information about a specified repository.</p> </li> <li> <p> <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p> </li> <li> <p> <a>UpdateRepositoryDescription</a>, which sets or updates the description of the repository.</p> </li> <li> <p> ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codecommit, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codecommit-2015-04-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codecommit/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2355], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-04-13: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-13, x-release:v4, title:AWS CodeCommit, description:<fullname>AWS CodeCommit</fullname> <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.</p> <p>You can use the AWS CodeCommit API to work with the following objects:</p> <p>Repositories, by calling the following:</p> <ul> <li> <p> <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p> </li> <li> <p> <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p> </li> <li> <p> <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p> </li> <li> <p> <a>GetRepository</a>, which returns information about a specified repository.</p> </li> <li> <p> <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p> </li> <li> <p> <a>UpdateRepositoryDescription</a>, which ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codecommit/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codecommit/2015-04-13/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-04-13: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codecommit: DataRow\">amazonaws.com:codecommit</span>", children: [2321, 2322, 2356], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-04-13\nversions: { 2015-04-13:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-13, x-release:v4, title:AWS CodeCommit, description:<fullname>AWS CodeCommit</fullname> <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.</p> <p>You can use the AWS CodeCommit API to work with the following objects:</p> <p>Repositories, by calling the following:</p> <ul> <li> <p> <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p> </li> <li> <p> <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p> </li> <li> <p> <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p> </li> <li> <p> <a>GetRepository</a>, which returns information about a specified repository.</p> </li> <li> <p> <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p> </li> <li> <p> <a>... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-10-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-10-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeDeploy"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CodeDeploy</fullname> <p>AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless AWS Lambda functions, or applications in an Amazon ECS service.</p> <p>You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. AWS CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use AWS CodeDeploy.</p> <p>AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, without many of the risks associated with error-prone manual deployments.</p> <p> <b>AWS CodeDeploy Components</b> </p> <p>Use the information in this guide to help you work with the following AWS CodeDeploy components:</p> <ul> <li> <p> <b>Application</b>: A name that uniquely identifies the application you want to deploy. AWS CodeDeploy uses this name, which functions as a container, to ensure the correct combination of revision, deployment configuration, and deployment group are referenced during a deployment.</p> </li> <li> <p> <b>Deployment group</b>: A set of individual instances, CodeDeploy Lambda deployment configuration settings, or an Amazon ECS service and network details. A Lambda deployment group specifies how to route traffic to a new version of a Lambda function. An Amazon ECS deployment group specifies the service created in Amazon ECS to deploy, a load balancer, and a listener to reroute production traffic to an updated containerized application. An EC2/On-premises deployment group contains individually tagged instances, Amazon EC2 instances in Amazon EC2 Auto Scaling groups, or both. All deployment groups can specify optional trigger, alarm, and rollback settings.</p> </li> <li> <p> <b>Deployment configuration</b>: A set of deployment rules and deployment success and failure conditions used by AWS CodeDeploy during a deployment.</p> </li> <li> <p> <b>Deployment</b>: The process and the components used when updating a Lambda function, a containerized application in an Amazon ECS service, or of installing content on one or more instances. </p> </li> <li> <p> <b>Application revisions</b>: For an AWS Lambda deployment, this is an AppSpec file that specifies the Lambda function to be updated and one or more functions to validate deployment lifecycle events. For an Amazon ECS deployment, this is an AppSpec file that specifies the Amazon ECS task definition, container, and port where production traffic is rerouted. For an EC2/On-premises deployment, this is an archive file that contains source content—source code, webpages, executable files, and deployment scripts—along with an AppSpec file. Revisions are stored in Amazon S3 buckets or GitHub repositories. For Amazon S3, a revision is uniquely identified by its Amazon S3 object key and its ETag, version, or both. For GitHub, a revision is uniquely identified by its commit ID.</p> </li> </ul> <p>This guide also contains information to help you get details about the instances in your deployments, to make on-premises instances available for AWS CodeDeploy deployments, to get details about a Lambda function deployment, and to get details about Amazon ECS service deployments.</p> <p> <b>AWS CodeDeploy Information Resources</b> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/codedeploy/latest/userguide">AWS CodeDeploy User Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/codedeploy/latest/APIReference/">AWS CodeDeploy API Reference Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/reference/deploy/index.html">AWS CLI Reference for AWS CodeDeploy</a> </p> </li> <li> <p> <a href="https://forums.aws.amazon.com/forum.jspa?forumID=179">AWS CodeDeploy Developer Forum</a> </p> </li> </ul>\"><fullname>AWS CodeDeploy</fullname> <<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2365, 2366], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2369, 2370, 2371, 2372], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2374, 2375], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codedeploy"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410250, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2380], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2361, 2362, 2363, 2364, 2367, 2368, 2373, 2376, 2377, 2378, 2379, 2381, 2382, 2383], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-10-06\nx-release: v4\ntitle: AWS CodeDeploy\ndescription: <fullname>AWS CodeDeploy</fullname> <p>AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless AWS Lambda functions, or applications in an Amazon ECS service.</p> <p>You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. AWS CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use AWS CodeDeploy.</p> <p>AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, without many of the risks associated with error-prone manual deployments.</p> <p> <b>AWS CodeDeploy Components</b> </p> <p>Use the information in this guide to help you work with the following AWS CodeDeploy components:</p> <ul> <li> <p> <b>Application</b>: A name that uniquely identifies the application you want to deploy. AWS CodeDeploy uses this name, which functions as a container, to ensure the correct combination of revision, deployment configuration, and deployment group are referenced during a deployment.</p> </li> <li> <p> <b>Deployment group</b>: A set of individual instances, CodeDeploy Lambda deployment configuration settings, or an Amazon ECS service and network details. A Lambda deployment group specifies how to route traffic to a new version of a Lambda function. An Amazon ECS deployment group specifies the service created in Amazon ECS to deploy, a load balancer, and a listener to reroute production traffic to an updated containerized application. An EC2/On-premises deployment group contains individually tagged instances, Amazon EC2 instances in Amazon EC2 Auto Scaling groups, or both. All deployment groups can specify optional trigger, alarm, and rollback settings.</p> </li> <li> <p> <b>Deployment configuration</b>: A set of deployment rules and deployment success and failure conditions used by AWS CodeDeploy during a deployment.</p> </li> <li> <p> <b>Deployment</b>: The process and the components used when updating a Lambda function, a containerized application in an Amazon ECS service, or of installing content on one or more instances. </p> </li> <li> <p> <b>Application revisions</b>: For an AWS Lambda deployment, this is an AppSpec file that specifies the Lambda function to be updated and one or more functions to validate deployment lifecycle events. For an Amazon ECS deployment, this is an AppSpec file that specifies the Amazon ECS task definition, container, and port where production traffic is rerouted. For an EC2/On-premises deployment, this is an archive file that contains source content—source code, webpages, executable files, and deployment scripts—along with an AppSpec file. Revisions are stored in Amazon S3 buckets or GitHub repositories. For Amazon S3, a revision is uniquely identified by its Amazon S3 object key and its ETag, version, or both. For GitHub, a revision is uniquely identified by its commit ID.</p> </li> </ul> <p>This guide also contains information to help you get details about the instances in your deployments, to make on-premises instances available for AWS CodeDeploy deployments, to get details about a Lambda function deployment, and to get details about Amazon ECS service deployments.</p> <p> <b>AWS CodeDeploy Information Resources</b> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/codedeploy/latest/userguide">AWS CodeDeploy User Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/codedeploy/latest/APIReference/">AWS CodeDeploy API Reference Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/reference/deploy/index.html">AWS CLI Reference for AWS CodeDeploy</a> </p> </li> <li> <p> <a href="https://forums.aws.amazon.com/forum.jspa?forumID=179">AWS CodeDeploy Developer Forum</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codedeploy\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-10-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/codedeploy/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2385, 2386], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codedeploy/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-10-06: DataRow\">2014-10-06</span>", children: [2360, 2384, 2387, 2388, 2389, 2390, 2391], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-10-06, x-release:v4, title:AWS CodeDeploy, description:<fullname>AWS CodeDeploy</fullname> <p>AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless AWS Lambda functions, or applications in an Amazon ECS service.</p> <p>You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. AWS CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use AWS CodeDeploy.</p> <p>AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, without many of the risks associated with error-prone manual deployment..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codedeploy, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codedeploy-2014-10-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codedeploy/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2392], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-10-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-10-06, x-release:v4, title:AWS CodeDeploy, description:<fullname>AWS CodeDeploy</fullname> <p>AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless AWS Lambda functions, or applications in an Amazon ECS service.</p> <p>You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. AWS CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use AWS CodeDeploy.</p> <p>AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the complexity of updating your applications, w..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codedeploy/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codedeploy/2014-10-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-10-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codedeploy: DataRow\">amazonaws.com:codedeploy</span>", children: [2358, 2359, 2393], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-10-06\nversions: { 2014-10-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-10-06, x-release:v4, title:AWS CodeDeploy, description:<fullname>AWS CodeDeploy</fullname> <p>AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances running in your own facility, serverless AWS Lambda functions, or applications in an Amazon ECS service.</p> <p>You can deploy a nearly unlimited variety of application content, such as an updated Lambda function, updated applications in an Amazon ECS service, code, web and configuration files, executables, packages, scripts, multimedia files, and so on. AWS CodeDeploy can deploy application content stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. You do not need to make changes to your existing code before you can use AWS CodeDeploy.</p> <p>AWS CodeDeploy makes it easier for you to rapidly release new features, helps you avoid downtime during application deployment, and handles the comp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-09-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-09-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CodeGuru Reviewer"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.</p> <p>By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the <i> <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/welcome.html">Amazon CodeGuru Reviewer User Guide</a>.</i> </p> <p> To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an <i>interface VPC endpoint</i>. For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/vpc-interface-endpoints.html">CodeGuru Reviewer and interface VPC endpoints (Amazon Web Services PrivateLink)</a> in the <i>Amazon CodeGuru Reviewer User Guide</i>. </p>\"><p>This section provides documentatio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2402, 2403], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2406, 2407, 2408, 2409], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2411, 2412], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codeguru-reviewer"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["codeguru-reviewer"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410251, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2418], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2398, 2399, 2400, 2401, 2404, 2405, 2410, 2413, 2414, 2415, 2416, 2417, 2419, 2420, 2421], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-09-19\nx-release: v4\ntitle: Amazon CodeGuru Reviewer\ndescription: <p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.</p> <p>By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the <i> <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/welcome.html">Amazon CodeGuru Reviewer User Guide</a>.</i> </p> <p> To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an <i>interface VPC endpoint</i>. For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/vpc-interface-endpoints.html">CodeGuru Reviewer and interface VPC endpoints (Amazon Web Services PrivateLink)</a> in the <i>Amazon CodeGuru Reviewer User Guide</i>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codeguru-reviewer\nx-aws-signingName: codeguru-reviewer\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-09-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codeguru-reviewer/\">https://docs.aws.amazon.com/codeguru-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2423, 2424], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codeguru-reviewer/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-11T19:05:17.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-09-19: DataRow\">2019-09-19</span>", children: [2397, 2422, 2425, 2426, 2427, 2428, 2429], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-09-19, x-release:v4, title:Amazon CodeGuru Reviewer, description:<p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.</p> <p>By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the <i> <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/welcome.html">Amazon CodeGuru Reviewer User Guide</a>.</i> </p> <p> To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an <i>interface VPC endpoint</i>. For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/vpc-..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codeguru-reviewer, x-aws-signingName:codeguru-reviewer, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codeguru-reviewer-2019-09-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeguru-reviewer/ }\nupdated: 2020-05-11T19:05:17.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2430], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-09-19: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-09-19, x-release:v4, title:Amazon CodeGuru Reviewer, description:<p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.</p> <p>By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the <i> <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/welcome.html">Amazon CodeGuru Reviewer User Guide</a>.</i> </p> <p> To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an <i>interface VPC endpoint</i>. For more inform..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeguru-reviewer/ }, updated:2020-05-11T19:05:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeguru-reviewer/2019-09-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-09-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codeguru-reviewer: DataRow\">amazonaws.com:codeguru-reviewer</span>", children: [2395, 2396, 2431], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-09-19\nversions: { 2019-09-19:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-09-19, x-release:v4, title:Amazon CodeGuru Reviewer, description:<p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java and Python code.</p> <p>By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the <i> <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-ug/welcome.html">Amazon CodeGuru Reviewer User Guide</a>.</i> </p> <p> To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an <i>inte... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-07-18"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-07-18"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CodeGuru Profiler"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p> This section provides documentation for the Amazon CodeGuru Profiler API operations. </p> <p> Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance. Using machine learning algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can improve efficiency and remove CPU bottlenecks. </p> <p> Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization. </p> <note> <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM) languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications written in Java, it can also generate visualizations and a subset of recommendations for applications written in other JVM languages and Python.</p> </note> <p> For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/what-is-codeguru-profiler.html">What is Amazon CodeGuru Profiler</a> in the <i>Amazon CodeGuru Profiler User Guide</i>. </p>\"><p> This section provides documentati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2440, 2441], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2444, 2445, 2446, 2447], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2449, 2450], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codeguruprofiler"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["codeguru-profiler"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410252, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2456], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2436, 2437, 2438, 2439, 2442, 2443, 2448, 2451, 2452, 2453, 2454, 2455, 2457, 2458, 2459], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-07-18\nx-release: v4\ntitle: Amazon CodeGuru Profiler\ndescription: <p> This section provides documentation for the Amazon CodeGuru Profiler API operations. </p> <p> Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance. Using machine learning algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can improve efficiency and remove CPU bottlenecks. </p> <p> Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization. </p> <note> <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM) languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications written in Java, it can also generate visualizations and a subset of recommendations for applications written in other JVM languages and Python.</p> </note> <p> For more information, see <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-ug/what-is-codeguru-profiler.html">What is Amazon CodeGuru Profiler</a> in the <i>Amazon CodeGuru Profiler User Guide</i>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codeguruprofiler\nx-aws-signingName: codeguru-profiler\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-07-18<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codeguru-profiler/\">https://docs.aws.amazon.com/codeguru-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2461, 2462], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codeguru-profiler/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-09T06:28:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-07-18: DataRow\">2019-07-18</span>", children: [2435, 2460, 2463, 2464, 2465, 2466, 2467], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-07-18, x-release:v4, title:Amazon CodeGuru Profiler, description:<p> This section provides documentation for the Amazon CodeGuru Profiler API operations. </p> <p> Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance. Using machine learning algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can improve efficiency and remove CPU bottlenecks. </p> <p> Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization. </p> <note> <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM) languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications written in Java, it can also generate visualizations and a subset of recommendations for applications writ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codeguruprofiler, x-aws-signingName:codeguru-profiler, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codeguruprofiler-2019-07-18.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeguru-profiler/ }\nupdated: 2020-04-09T06:28:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2468], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-07-18: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-18, x-release:v4, title:Amazon CodeGuru Profiler, description:<p> This section provides documentation for the Amazon CodeGuru Profiler API operations. </p> <p> Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance. Using machine learning algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can improve efficiency and remove CPU bottlenecks. </p> <p> Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization. </p> <note> <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM) languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for applications written in Java, it can al..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codeguru-profiler/ }, updated:2020-04-09T06:28:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codeguruprofiler/2019-07-18/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-07-18: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codeguruprofiler: DataRow\">amazonaws.com:codeguruprofiler</span>", children: [2433, 2434, 2469], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-07-18\nversions: { 2019-07-18:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-18, x-release:v4, title:Amazon CodeGuru Profiler, description:<p> This section provides documentation for the Amazon CodeGuru Profiler API operations. </p> <p> Amazon CodeGuru Profiler collects runtime performance data from your live applications, and provides recommendations that can help you fine-tune your application performance. Using machine learning algorithms, CodeGuru Profiler can help you find your most expensive lines of code and suggest ways you can improve efficiency and remove CPU bottlenecks. </p> <p> Amazon CodeGuru Profiler provides different visualizations of profiling data to help you identify what code is running on the CPU, see how much time is consumed, and suggest ways to reduce CPU utilization. </p> <note> <p>Amazon CodeGuru Profiler currently supports applications written in all Java virtual machine (JVM) languages and Python. While CodeGuru Profiler supports both visualizations and recommendations for ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-07-09"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-07-09"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodePipeline"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CodePipeline</fullname> <p> <b>Overview</b> </p> <p>This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">AWS CodePipeline User Guide</a>.</p> <p>You can use the AWS CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </li> <li> <p> <a>GetPipeline</a>, which returns information about the pipeline structure and pipeline metadata, including the pipeline Amazon Resource Name (ARN).</p> </li> <li> <p> <a>GetPipelineExecution</a>, which returns information about a specific execution of a pipeline.</p> </li> <li> <p> <a>GetPipelineState</a>, which returns information about the current state of the stages and actions of a pipeline.</p> </li> <li> <p> <a>ListActionExecutions</a>, which returns action-level details for past executions. The details include full stage and action-level details, including individual action duration, status, any errors that occurred during the execution, and input and output artifact location details.</p> </li> <li> <p> <a>ListPipelines</a>, which gets a summary of all of the pipelines associated with your account.</p> </li> <li> <p> <a>ListPipelineExecutions</a>, which gets a summary of the most recent executions for a pipeline.</p> </li> <li> <p> <a>StartPipelineExecution</a>, which runs the most recent revision of an artifact through the pipeline.</p> </li> <li> <p> <a>StopPipelineExecution</a>, which stops the specified pipeline execution from continuing through the pipeline.</p> </li> <li> <p> <a>UpdatePipeline</a>, which updates a pipeline with edits or changes to the structure of the pipeline.</p> </li> </ul> <p>Pipelines include <i>stages</i>. Each stage contains one or more actions that must complete before the next stage begins. A stage results in success or failure. If a stage fails, the pipeline stops at that stage and remains stopped until either a new version of an artifact appears in the source location, or a user takes action to rerun the most recent artifact through the pipeline. You can call <a>GetPipelineState</a>, which displays the status of a pipeline, including the status of stages in the pipeline, or <a>GetPipeline</a>, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-structure.html">AWS CodePipeline Pipeline Structure Reference</a>.</p> <p>Pipeline stages include <i>actions</i> that are categorized into categories such as source or build actions performed in a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as <a>CreatePipeline</a> and <a>GetPipelineState</a>. Valid action categories are:</p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Approval</p> </li> <li> <p>Invoke</p> </li> </ul> <p>Pipelines also include <i>transitions</i>, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.</p> <p>You can work with transitions by calling:</p> <ul> <li> <p> <a>DisableStageTransition</a>, which prevents artifacts from transitioning to the next stage in a pipeline.</p> </li> <li> <p> <a>EnableStageTransition</a>, which enables transition of artifacts between stages in a pipeline. </p> </li> </ul> <p> <b>Using the API to integrate with AWS CodePipeline</b> </p> <p>For third-party integrators or developers who want to create their own integrations with AWS CodePipeline, the expected sequence varies from the standard API user. To integrate with AWS CodePipeline, developers need to work with the following items:</p> <p> <b>Jobs</b>, which are instances of an action. For example, a job for a source action might import a revision of an artifact from a source. </p> <p>You can work with jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetJobDetails</a>, which returns the details of a job.</p> </li> <li> <p> <a>PollForJobs</a>, which determines whether there are any jobs to act on.</p> </li> <li> <p> <a>PutJobFailureResult</a>, which provides details of a job failure. </p> </li> <li> <p> <a>PutJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul> <p> <b>Third party jobs</b>, which are instances of an action created by a partner action and integrated into AWS CodePipeline. Partner actions are created by members of the AWS Partner Network.</p> <p>You can work with third party jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeThirdPartyJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetThirdPartyJobDetails</a>, which requests the details of a job for a partner action.</p> </li> <li> <p> <a>PollForThirdPartyJobs</a>, which determines whether there are any jobs to act on. </p> </li> <li> <p> <a>PutThirdPartyJobFailureResult</a>, which provides details of a job failure.</p> </li> <li> <p> <a>PutThirdPartyJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul>\"><fullname>AWS CodePipeline</fullname><span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2478, 2479], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2482, 2483, 2484, 2485], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2487, 2488], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codepipeline"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410253, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2493], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2474, 2475, 2476, 2477, 2480, 2481, 2486, 2489, 2490, 2491, 2492, 2494, 2495, 2496], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-07-09\nx-release: v4\ntitle: AWS CodePipeline\ndescription: <fullname>AWS CodePipeline</fullname> <p> <b>Overview</b> </p> <p>This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">AWS CodePipeline User Guide</a>.</p> <p>You can use the AWS CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </li> <li> <p> <a>GetPipeline</a>, which returns information about the pipeline structure and pipeline metadata, including the pipeline Amazon Resource Name (ARN).</p> </li> <li> <p> <a>GetPipelineExecution</a>, which returns information about a specific execution of a pipeline.</p> </li> <li> <p> <a>GetPipelineState</a>, which returns information about the current state of the stages and actions of a pipeline.</p> </li> <li> <p> <a>ListActionExecutions</a>, which returns action-level details for past executions. The details include full stage and action-level details, including individual action duration, status, any errors that occurred during the execution, and input and output artifact location details.</p> </li> <li> <p> <a>ListPipelines</a>, which gets a summary of all of the pipelines associated with your account.</p> </li> <li> <p> <a>ListPipelineExecutions</a>, which gets a summary of the most recent executions for a pipeline.</p> </li> <li> <p> <a>StartPipelineExecution</a>, which runs the most recent revision of an artifact through the pipeline.</p> </li> <li> <p> <a>StopPipelineExecution</a>, which stops the specified pipeline execution from continuing through the pipeline.</p> </li> <li> <p> <a>UpdatePipeline</a>, which updates a pipeline with edits or changes to the structure of the pipeline.</p> </li> </ul> <p>Pipelines include <i>stages</i>. Each stage contains one or more actions that must complete before the next stage begins. A stage results in success or failure. If a stage fails, the pipeline stops at that stage and remains stopped until either a new version of an artifact appears in the source location, or a user takes action to rerun the most recent artifact through the pipeline. You can call <a>GetPipelineState</a>, which displays the status of a pipeline, including the status of stages in the pipeline, or <a>GetPipeline</a>, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-structure.html">AWS CodePipeline Pipeline Structure Reference</a>.</p> <p>Pipeline stages include <i>actions</i> that are categorized into categories such as source or build actions performed in a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as <a>CreatePipeline</a> and <a>GetPipelineState</a>. Valid action categories are:</p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Approval</p> </li> <li> <p>Invoke</p> </li> </ul> <p>Pipelines also include <i>transitions</i>, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.</p> <p>You can work with transitions by calling:</p> <ul> <li> <p> <a>DisableStageTransition</a>, which prevents artifacts from transitioning to the next stage in a pipeline.</p> </li> <li> <p> <a>EnableStageTransition</a>, which enables transition of artifacts between stages in a pipeline. </p> </li> </ul> <p> <b>Using the API to integrate with AWS CodePipeline</b> </p> <p>For third-party integrators or developers who want to create their own integrations with AWS CodePipeline, the expected sequence varies from the standard API user. To integrate with AWS CodePipeline, developers need to work with the following items:</p> <p> <b>Jobs</b>, which are instances of an action. For example, a job for a source action might import a revision of an artifact from a source. </p> <p>You can work with jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetJobDetails</a>, which returns the details of a job.</p> </li> <li> <p> <a>PollForJobs</a>, which determines whether there are any jobs to act on.</p> </li> <li> <p> <a>PutJobFailureResult</a>, which provides details of a job failure. </p> </li> <li> <p> <a>PutJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul> <p> <b>Third party jobs</b>, which are instances of an action created by a partner action and integrated into AWS CodePipeline. Partner actions are created by members of the AWS Partner Network.</p> <p>You can work with third party jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeThirdPartyJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetThirdPartyJobDetails</a>, which requests the details of a job for a partner action.</p> </li> <li> <p> <a>PollForThirdPartyJobs</a>, which determines whether there are any jobs to act on. </p> </li> <li> <p> <a>PutThirdPartyJobFailureResult</a>, which provides details of a job failure.</p> </li> <li> <p> <a>PutThirdPartyJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codepipeline\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-07-09<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codepipeline/\">https://docs.aws.amazon.com/codepipel<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2498, 2499], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codepipeline/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-07-09: DataRow\">2015-07-09</span>", children: [2473, 2497, 2500, 2501, 2502, 2503, 2504], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-07-09, x-release:v4, title:AWS CodePipeline, description:<fullname>AWS CodePipeline</fullname> <p> <b>Overview</b> </p> <p>This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">AWS CodePipeline User Guide</a>.</p> <p>You can use the AWS CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </li> <li> <p> <a>GetPipeline</a>, which returns information about the pipeline structure and pipeline metadata, i..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codepipeline, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codepipeline-2015-07-09.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codepipeline/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2505], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-07-09: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-09, x-release:v4, title:AWS CodePipeline, description:<fullname>AWS CodePipeline</fullname> <p> <b>Overview</b> </p> <p>This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">AWS CodePipeline User Guide</a>.</p> <p>You can use the AWS CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </li> <li> <p> <a>GetPipeline</a>, which r..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codepipeline/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codepipeline/2015-07-09/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-07-09: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codepipeline: DataRow\">amazonaws.com:codepipeline</span>", children: [2471, 2472, 2506], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-07-09\nversions: { 2015-07-09:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-09, x-release:v4, title:AWS CodePipeline, description:<fullname>AWS CodePipeline</fullname> <p> <b>Overview</b> </p> <p>This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">AWS CodePipeline User Guide</a>.</p> <p>You can use the AWS CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </l... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeStar"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>UntagProject</code>, which removes tags from a project.</p> </li> <li> <p> <code>UpdateProject</code>, which updates the attributes of a project.</p> </li> </ul> <p>Teams and team members, by calling the following:</p> <ul> <li> <p> <code>AssociateTeamMember</code>, which adds an IAM user to the team for a project.</p> </li> <li> <p> <code>DisassociateTeamMember</code>, which removes an IAM user from the team for a project.</p> </li> <li> <p> <code>ListTeamMembers</code>, which lists all the IAM users in the team for a project, including their roles and attributes.</p> </li> <li> <p> <code>UpdateTeamMember</code>, which updates a team member's attributes in a project.</p> </li> </ul> <p>Users, by calling the following:</p> <ul> <li> <p> <code>CreateUserProfile</code>, which creates a user profile that contains data associated with the user across all projects.</p> </li> <li> <p> <code>DeleteUserProfile</code>, which deletes all user profile information across all projects.</p> </li> <li> <p> <code>DescribeUserProfile</code>, which describes the profile of a user.</p> </li> <li> <p> <code>ListUserProfiles</code>, which lists all user profiles.</p> </li> <li> <p> <code>UpdateUserProfile</code>, which updates the profile for a user.</p> </li> </ul>\"><fullname>AWS CodeStar</fullname> <p><span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2515, 2516], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2519, 2520, 2521, 2522], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2524, 2525], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codestar"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410254, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2530], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2511, 2512, 2513, 2514, 2517, 2518, 2523, 2526, 2527, 2528, 2529, 2531, 2532, 2533], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-04-19\nx-release: v4\ntitle: AWS CodeStar\ndescription: <fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>UntagProject</code>, which removes tags from a project.</p> </li> <li> <p> <code>UpdateProject</code>, which updates the attributes of a project.</p> </li> </ul> <p>Teams and team members, by calling the following:</p> <ul> <li> <p> <code>AssociateTeamMember</code>, which adds an IAM user to the team for a project.</p> </li> <li> <p> <code>DisassociateTeamMember</code>, which removes an IAM user from the team for a project.</p> </li> <li> <p> <code>ListTeamMembers</code>, which lists all the IAM users in the team for a project, including their roles and attributes.</p> </li> <li> <p> <code>UpdateTeamMember</code>, which updates a team member's attributes in a project.</p> </li> </ul> <p>Users, by calling the following:</p> <ul> <li> <p> <code>CreateUserProfile</code>, which creates a user profile that contains data associated with the user across all projects.</p> </li> <li> <p> <code>DeleteUserProfile</code>, which deletes all user profile information across all projects.</p> </li> <li> <p> <code>DescribeUserProfile</code>, which describes the profile of a user.</p> </li> <li> <p> <code>ListUserProfiles</code>, which lists all user profiles.</p> </li> <li> <p> <code>UpdateUserProfile</code>, which updates the profile for a user.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codestar\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-04-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/codestar/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2535, 2536], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codestar/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-04-19: DataRow\">2017-04-19</span>", children: [2510, 2534, 2537, 2538, 2539, 2540, 2541], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-04-19, x-release:v4, title:AWS CodeStar, description:<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>UntagProject</code>, which removes tags from a project.</p> </li> <li> <p> <code>UpdateProject</code>, which upd..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codestar, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codestar-2017-04-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2542], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-04-19: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:AWS CodeStar, description:<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>UntagProject</code>, which removes tags from..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar/2017-04-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-04-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codestar: DataRow\">amazonaws.com:codestar</span>", children: [2508, 2509, 2543], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-04-19\nversions: { 2017-04-19:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:AWS CodeStar, description:<fullname>AWS CodeStar</fullname> <p>This is the API reference for AWS CodeStar. This reference provides descriptions of the operations and data types for the AWS CodeStar API along with usage examples.</p> <p>You can use the AWS CodeStar API to work with:</p> <p>Projects and their resources, by calling the following:</p> <ul> <li> <p> <code>DeleteProject</code>, which deletes a project.</p> </li> <li> <p> <code>DescribeProject</code>, which lists the attributes of a project.</p> </li> <li> <p> <code>ListProjects</code>, which lists all projects associated with your AWS account.</p> </li> <li> <p> <code>ListResources</code>, which lists the resources associated with a project.</p> </li> <li> <p> <code>ListTagsForProject</code>, which lists the tags associated with a project.</p> </li> <li> <p> <code>TagProject</code>, which adds tags to a project.</p> </li> <li> <p> <code>Untag... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeStar connections"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS CodeStar Connections</fullname> <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.</p> <p> <i>Connections</i> are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.</p> <p>When you create a connection, the console initiates a third-party connection handshake. <i>Installations</i> are the apps that are used to conduct this handshake. For example, the installation for the Bitbucket provider type is the Bitbucket app. When you create a connection, you can choose an existing installation or create one.</p> <p>When you want to create a connection to an installed provider type such as GitHub Enterprise Server, you create a <i>host</i> for your connections.</p> <p>You can work with connections by calling:</p> <ul> <li> <p> <a>CreateConnection</a>, which creates a uniquely named connection that can be referenced by services such as CodePipeline.</p> </li> <li> <p> <a>DeleteConnection</a>, which deletes the specified connection.</p> </li> <li> <p> <a>GetConnection</a>, which returns information about the connection, including the connection status.</p> </li> <li> <p> <a>ListConnections</a>, which lists the connections associated with your account.</p> </li> </ul> <p>You can work with hosts by calling:</p> <ul> <li> <p> <a>CreateHost</a>, which creates a host that represents the infrastructure where your provider is installed.</p> </li> <li> <p> <a>DeleteHost</a>, which deletes the specified host.</p> </li> <li> <p> <a>GetHost</a>, which returns information about the host, including the setup status.</p> </li> <li> <p> <a>ListHosts</a>, which lists the hosts associated with your account.</p> </li> </ul> <p>You can work with tags in AWS CodeStar Connections by calling the following:</p> <ul> <li> <p> <a>ListTagsForResource</a>, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeStar Connections.</p> </li> <li> <p> <a>TagResource</a>, which adds or updates tags for a resource in AWS CodeStar Connections.</p> </li> <li> <p> <a>UntagResource</a>, which removes tags for a resource in AWS CodeStar Connections.</p> </li> </ul> <p>For information about how to use AWS CodeStar Connections, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html">Developer Tools User Guide</a>.</p>\"><fullname>AWS CodeStar Connections</f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2552, 2553], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2556, 2557, 2558, 2559], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2561, 2562], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codestar-connections"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["codestar-connections"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410255, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2568], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2548, 2549, 2550, 2551, 2554, 2555, 2560, 2563, 2564, 2565, 2566, 2567, 2569, 2570, 2571], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-01\nx-release: v4\ntitle: AWS CodeStar connections\ndescription: <fullname>AWS CodeStar Connections</fullname> <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.</p> <p> <i>Connections</i> are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.</p> <p>When you create a connection, the console initiates a third-party connection handshake. <i>Installations</i> are the apps that are used to conduct this handshake. For example, the installation for the Bitbucket provider type is the Bitbucket app. When you create a connection, you can choose an existing installation or create one.</p> <p>When you want to create a connection to an installed provider type such as GitHub Enterprise Server, you create a <i>host</i> for your connections.</p> <p>You can work with connections by calling:</p> <ul> <li> <p> <a>CreateConnection</a>, which creates a uniquely named connection that can be referenced by services such as CodePipeline.</p> </li> <li> <p> <a>DeleteConnection</a>, which deletes the specified connection.</p> </li> <li> <p> <a>GetConnection</a>, which returns information about the connection, including the connection status.</p> </li> <li> <p> <a>ListConnections</a>, which lists the connections associated with your account.</p> </li> </ul> <p>You can work with hosts by calling:</p> <ul> <li> <p> <a>CreateHost</a>, which creates a host that represents the infrastructure where your provider is installed.</p> </li> <li> <p> <a>DeleteHost</a>, which deletes the specified host.</p> </li> <li> <p> <a>GetHost</a>, which returns information about the host, including the setup status.</p> </li> <li> <p> <a>ListHosts</a>, which lists the hosts associated with your account.</p> </li> </ul> <p>You can work with tags in AWS CodeStar Connections by calling the following:</p> <ul> <li> <p> <a>ListTagsForResource</a>, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeStar Connections.</p> </li> <li> <p> <a>TagResource</a>, which adds or updates tags for a resource in AWS CodeStar Connections.</p> </li> <li> <p> <a>UntagResource</a>, which removes tags for a resource in AWS CodeStar Connections.</p> </li> </ul> <p>For information about how to use AWS CodeStar Connections, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html">Developer Tools User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codestar-connections\nx-aws-signingName: codestar-connections\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codestar-connections/\">https://docs.aws.amazon.com/codestar-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2573, 2574], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codestar-connections/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-06T20:09:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-01: DataRow\">2019-12-01</span>", children: [2547, 2572, 2575, 2576, 2577, 2578, 2579], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-12-01, x-release:v4, title:AWS CodeStar connections, description:<fullname>AWS CodeStar Connections</fullname> <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.</p> <p> <i>Connections</i> are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.</p> <p>When you create a connection, the console initiates a third-party connection handshake. <i>Installations</i> are the apps that are used to conduct this handshake. For example, the installation for the ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codestar-connections, x-aws-signingName:codestar-connections, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codestar-connections-2019-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar-connections/ }\nupdated: 2020-05-06T20:09:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2580], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-01, x-release:v4, title:AWS CodeStar connections, description:<fullname>AWS CodeStar Connections</fullname> <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.</p> <p> <i>Connections</i> are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.</p> <p>When you create a connection, the console initiates a third-party connection handshake. <i>Installations</i> are the apps..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar-connections/ }, updated:2020-05-06T20:09:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar-connections/2019-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codestar-connections: DataRow\">amazonaws.com:codestar-connections</span>", children: [2545, 2546, 2581], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-12-01\nversions: { 2019-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-01, x-release:v4, title:AWS CodeStar connections, description:<fullname>AWS CodeStar Connections</fullname> <p>This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.</p> <p> <i>Connections</i> are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.</p> <p>When you create a connection, the console initiates a third-party connection hands... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-10-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-10-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS CodeStar Notifications"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API to work with the following objects:</p> <p>Notification rules, by calling the following: </p> <ul> <li> <p> <a>CreateNotificationRule</a>, which creates a notification rule for a resource in your account. </p> </li> <li> <p> <a>DeleteNotificationRule</a>, which deletes a notification rule. </p> </li> <li> <p> <a>DescribeNotificationRule</a>, which provides information about a notification rule. </p> </li> <li> <p> <a>ListNotificationRules</a>, which lists the notification rules associated with your account. </p> </li> <li> <p> <a>UpdateNotificationRule</a>, which changes the name, events, or targets associated with a notification rule. </p> </li> <li> <p> <a>Subscribe</a>, which subscribes a target to a notification rule. </p> </li> <li> <p> <a>Unsubscribe</a>, which removes a target from a notification rule. </p> </li> </ul> <p>Targets, by calling the following: </p> <ul> <li> <p> <a>DeleteTarget</a>, which removes a notification rule target (SNS topic) from a notification rule. </p> </li> <li> <p> <a>ListTargets</a>, which lists the targets associated with a notification rule. </p> </li> </ul> <p>Events, by calling the following: </p> <ul> <li> <p> <a>ListEventTypes</a>, which lists the event types you can include in a notification rule. </p> </li> </ul> <p>Tags, by calling the following: </p> <ul> <li> <p> <a>ListTagsForResource</a>, which lists the tags already associated with a notification rule in your account. </p> </li> <li> <p> <a>TagResource</a>, which associates a tag you provide with a notification rule in your account. </p> </li> <li> <p> <a>UntagResource</a>, which removes a tag from a notification rule in your account. </p> </li> </ul> <p> For information about how to use AWS CodeStar Notifications, see link in the CodeStarNotifications User Guide. </p>\"><p>This AWS CodeStar Notifications AP<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2590, 2591], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2594, 2595, 2596, 2597], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2599, 2600], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["codestar-notifications"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["codestar-notifications"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410256, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2606], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2586, 2587, 2588, 2589, 2592, 2593, 2598, 2601, 2602, 2603, 2604, 2605, 2607, 2608, 2609], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-10-15\nx-release: v4\ntitle: AWS CodeStar Notifications\ndescription: <p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API to work with the following objects:</p> <p>Notification rules, by calling the following: </p> <ul> <li> <p> <a>CreateNotificationRule</a>, which creates a notification rule for a resource in your account. </p> </li> <li> <p> <a>DeleteNotificationRule</a>, which deletes a notification rule. </p> </li> <li> <p> <a>DescribeNotificationRule</a>, which provides information about a notification rule. </p> </li> <li> <p> <a>ListNotificationRules</a>, which lists the notification rules associated with your account. </p> </li> <li> <p> <a>UpdateNotificationRule</a>, which changes the name, events, or targets associated with a notification rule. </p> </li> <li> <p> <a>Subscribe</a>, which subscribes a target to a notification rule. </p> </li> <li> <p> <a>Unsubscribe</a>, which removes a target from a notification rule. </p> </li> </ul> <p>Targets, by calling the following: </p> <ul> <li> <p> <a>DeleteTarget</a>, which removes a notification rule target (SNS topic) from a notification rule. </p> </li> <li> <p> <a>ListTargets</a>, which lists the targets associated with a notification rule. </p> </li> </ul> <p>Events, by calling the following: </p> <ul> <li> <p> <a>ListEventTypes</a>, which lists the event types you can include in a notification rule. </p> </li> </ul> <p>Tags, by calling the following: </p> <ul> <li> <p> <a>ListTagsForResource</a>, which lists the tags already associated with a notification rule in your account. </p> </li> <li> <p> <a>TagResource</a>, which associates a tag you provide with a notification rule in your account. </p> </li> <li> <p> <a>UntagResource</a>, which removes a tag from a notification rule in your account. </p> </li> </ul> <p> For information about how to use AWS CodeStar Notifications, see link in the CodeStarNotifications User Guide. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: codestar-notifications\nx-aws-signingName: codestar-notifications\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-10-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/codestar-notifications/\">https://docs.aws.amazon.com/codestar-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2611, 2612], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/codestar-notifications/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-10-15: DataRow\">2019-10-15</span>", children: [2585, 2610, 2613, 2614, 2615, 2616, 2617], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-10-15, x-release:v4, title:AWS CodeStar Notifications, description:<p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API to work with the following objects:</p> <p>Notification rules, by calling the following: </p> <ul> <li> <p> <a>CreateNotificationRule</a>, which creates a notification rule for a resource in your account. </p> </li> <li> <p> <a>DeleteNotificationRule</a>, which deletes a notification rule. </p> </li> <li> <p> <a>DescribeNotificationRule</a>, which provides information about a notification rule. </p> </li> <li> <p> <a>ListNotificationRules</a>, which lists the notification rules associated with your account. </p> </li> <li> <p> <a>UpdateNotificationRule</a>, which changes the name, events, or targets associated with a notification rule. </p> </li> <li> <p> <a>Subscribe</a>, which subscribes a target to a notification rule. </p> </li> <li> <p> <a>Unsubscribe</a>, which removes a..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:codestar-notifications, x-aws-signingName:codestar-notifications, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codestar-notifications-2019-10-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar-notifications/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2618], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-10-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-10-15, x-release:v4, title:AWS CodeStar Notifications, description:<p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API to work with the following objects:</p> <p>Notification rules, by calling the following: </p> <ul> <li> <p> <a>CreateNotificationRule</a>, which creates a notification rule for a resource in your account. </p> </li> <li> <p> <a>DeleteNotificationRule</a>, which deletes a notification rule. </p> </li> <li> <p> <a>DescribeNotificationRule</a>, which provides information about a notification rule. </p> </li> <li> <p> <a>ListNotificationRules</a>, which lists the notification rules associated with your account. </p> </li> <li> <p> <a>UpdateNotificationRule</a>, which changes the name, events, or targets associated with a notification rule. </p> </li> <li> <p> <a>Subscribe</a>, which subscribes a targ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/codestar-notifications/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/codestar-notifications/2019-10-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-10-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:codestar-notifications: DataRow\">amazonaws.com:codestar-notifications</span>", children: [2583, 2584, 2619], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-10-15\nversions: { 2019-10-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-10-15, x-release:v4, title:AWS CodeStar Notifications, description:<p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API to work with the following objects:</p> <p>Notification rules, by calling the following: </p> <ul> <li> <p> <a>CreateNotificationRule</a>, which creates a notification rule for a resource in your account. </p> </li> <li> <p> <a>DeleteNotificationRule</a>, which deletes a notification rule. </p> </li> <li> <p> <a>DescribeNotificationRule</a>, which provides information about a notification rule. </p> </li> <li> <p> <a>ListNotificationRules</a>, which lists the notification rules associated with your account. </p> </li> <li> <p> <a>UpdateNotificationRule</a>, which changes the name, events, or targets associated with a notification rule. </p> </li> <li> <p> <a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-06-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-06-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Cognito Identity"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Cognito Federated Identities</fullname> <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.</p> <p>Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.</p> <p>For a description of the authentication flow from the Amazon Cognito Developer Guide see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Authentication Flow</a>.</p> <p>For more information see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html">Amazon Cognito Federated Identities</a>.</p>\"><fullname>Amazon Cognito Federated Id<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2628, 2629], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2632, 2633, 2634, 2635], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2637, 2638], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cognito-identity"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410257, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2643], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2624, 2625, 2626, 2627, 2630, 2631, 2636, 2639, 2640, 2641, 2642, 2644, 2645, 2646], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-06-30\nx-release: v4\ntitle: Amazon Cognito Identity\ndescription: <fullname>Amazon Cognito Federated Identities</fullname> <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.</p> <p>Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.</p> <p>For a description of the authentication flow from the Amazon Cognito Developer Guide see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Authentication Flow</a>.</p> <p>For more information see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html">Amazon Cognito Federated Identities</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cognito-identity\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-06-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/cognito-identity/\">https://docs.aws.amazon.com/cognito-i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2648, 2649], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cognito-identity/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-06-30: DataRow\">2014-06-30</span>", children: [2623, 2647, 2650, 2651, 2652, 2653, 2654], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-06-30, x-release:v4, title:Amazon Cognito Identity, description:<fullname>Amazon Cognito Federated Identities</fullname> <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.</p> <p>Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.</p> <p>For a description of the authentication flow from the Amazon Cognito Developer Guide see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html">Authentication Flow<..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cognito-identity, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cognito-identity-2014-06-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-identity/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2655], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-06-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-30, x-release:v4, title:Amazon Cognito Identity, description:<fullname>Amazon Cognito Federated Identities</fullname> <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.</p> <p>Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.</p> <p>For a description of the authentication flow from the Amazon Cognito Developer Guide see <a href="https://docs.aws.amazon.c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-identity/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-identity/2014-06-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-06-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cognito-identity: DataRow\">amazonaws.com:cognito-identity</span>", children: [2621, 2622, 2656], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-06-30\nversions: { 2014-06-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-30, x-release:v4, title:Amazon Cognito Identity, description:<fullname>Amazon Cognito Federated Identities</fullname> <p>Amazon Cognito Federated Identities is a web service that delivers scoped temporary credentials to mobile devices and other untrusted environments. It uniquely identifies a device and supplies the user with a consistent identity over the lifetime of an application.</p> <p>Using Amazon Cognito Federated Identities, you can enable authentication with one or more third-party identity providers (Facebook, Google, or Login with Amazon) or an Amazon Cognito user pool, and you can also choose to support unauthenticated access from your app. Cognito delivers a unique identifier for each user and acts as an OpenID token provider trusted by AWS Security Token Service (STS) to access temporary, limited-privilege AWS credentials.</p> <p>For a description of the authentication flow from the Amazon Cognito Developer Guide... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-04-18"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-04-18"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Cognito Identity Provider"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Using the Amazon Cognito User Pools API, you can create a user pool to manage directories and users. You can authenticate a user to obtain tokens related to user identity and access policies.</p> <p>This API reference provides information about user pools in Amazon Cognito User Pools.</p> <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito Documentation</a>.</p>\"><p>Using the Amazon Cognito User Pool<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2665, 2666], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2669, 2670, 2671, 2672], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2674, 2675], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cognito-idp"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410258, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2680], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2661, 2662, 2663, 2664, 2667, 2668, 2673, 2676, 2677, 2678, 2679, 2681, 2682, 2683], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-04-18\nx-release: v4\ntitle: Amazon Cognito Identity Provider\ndescription: <p>Using the Amazon Cognito User Pools API, you can create a user pool to manage directories and users. You can authenticate a user to obtain tokens related to user identity and access policies.</p> <p>This API reference provides information about user pools in Amazon Cognito User Pools.</p> <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito Documentation</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cognito-idp\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-04-18<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cognito-idp/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2685, 2686], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cognito-idp/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-17T09:20:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-04-18: DataRow\">2016-04-18</span>", children: [2660, 2684, 2687, 2688, 2689, 2690, 2691], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-04-18, x-release:v4, title:Amazon Cognito Identity Provider, description:<p>Using the Amazon Cognito User Pools API, you can create a user pool to manage directories and users. You can authenticate a user to obtain tokens related to user identity and access policies.</p> <p>This API reference provides information about user pools in Amazon Cognito User Pools.</p> <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito Documentation</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cognito-idp, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cognito-idp-2016-04-18.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-idp/ }\nupdated: 2020-03-17T09:20:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2692], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-04-18: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-04-18, x-release:v4, title:Amazon Cognito Identity Provider, description:<p>Using the Amazon Cognito User Pools API, you can create a user pool to manage directories and users. You can authenticate a user to obtain tokens related to user identity and access policies.</p> <p>This API reference provides information about user pools in Amazon Cognito User Pools.</p> <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito Documentation</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cognito-idp, x-origin:[..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-idp/ }, updated:2020-03-17T09:20:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-idp/2016-04-18/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-04-18: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cognito-idp: DataRow\">amazonaws.com:cognito-idp</span>", children: [2658, 2659, 2693], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-04-18\nversions: { 2016-04-18:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-04-18, x-release:v4, title:Amazon Cognito Identity Provider, description:<p>Using the Amazon Cognito User Pools API, you can create a user pool to manage directories and users. You can authenticate a user to obtain tokens related to user identity and access policies.</p> <p>This API reference provides information about user pools in Amazon Cognito User Pools.</p> <p>For more information, see the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html">Amazon Cognito Documentation</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-06-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-06-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Cognito Sync"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a href="http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/Welcome.html">Amazon Cognito Identity service</a>.</p> <p>If you want to use Cognito Sync in an Android or iOS application, you will probably want to make API calls via the AWS Mobile SDK. To learn more, see the <a href="http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-sync.html">Developer Guide for Android</a> and the <a href="http://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-sync.html">Developer Guide for iOS</a>.</p>\"><fullname>Amazon Cognito Sync</fullna<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2702, 2703], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2706, 2707, 2708, 2709], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2711, 2712], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cognito-sync"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410259, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2717], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2698, 2699, 2700, 2701, 2704, 2705, 2710, 2713, 2714, 2715, 2716, 2718, 2719, 2720], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-06-30\nx-release: v4\ntitle: Amazon Cognito Sync\ndescription: <fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a href="http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/Welcome.html">Amazon Cognito Identity service</a>.</p> <p>If you want to use Cognito Sync in an Android or iOS application, you will probably want to make API calls via the AWS Mobile SDK. To learn more, see the <a href="http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-sync.html">Developer Guide for Android</a> and the <a href="http://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-sync.html">Developer Guide for iOS</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cognito-sync\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-06-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/cognito-sync/\">https://docs.aws.amazon.com/cognito-s<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2722, 2723], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cognito-sync/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-06-30: DataRow\">2014-06-30</span>", children: [2697, 2721, 2724, 2725, 2726, 2727, 2728], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-06-30, x-release:v4, title:Amazon Cognito Sync, description:<fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a href="http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/Welcome.html">Amazon Cognito Identity service<..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cognito-sync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cognito-sync-2014-06-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-sync/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2729], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-06-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-30, x-release:v4, title:Amazon Cognito Sync, description:<fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a href="http://docs.aws.amazon.com/cognito..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cognito-sync/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cognito-sync/2014-06-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-06-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cognito-sync: DataRow\">amazonaws.com:cognito-sync</span>", children: [2695, 2696, 2730], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-06-30\nversions: { 2014-06-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-30, x-release:v4, title:Amazon Cognito Sync, description:<fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a h... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Comprehend"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more.\">Amazon Comprehend is an AWS service f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2739, 2740], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2743, 2744, 2745, 2746], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2748, 2749], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["comprehend"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["comprehend"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410260, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2755], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2735, 2736, 2737, 2738, 2741, 2742, 2747, 2750, 2751, 2752, 2753, 2754, 2756, 2757, 2758], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-27\nx-release: v4\ntitle: Amazon Comprehend\ndescription: Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: comprehend\nx-aws-signingName: comprehend\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/comprehend/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2760, 2761], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/comprehend/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-27: DataRow\">2017-11-27</span>", children: [2734, 2759, 2762, 2763, 2764, 2765, 2766], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-27, x-release:v4, title:Amazon Comprehend, description:Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehend, x-aws-signingName:comprehend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehend-2017-11-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/comprehend/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2767], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:Amazon Comprehend, description:Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehend, x-aws-signingName:comprehend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehend-2017-11-27.normal.json, converter:{ url:https://github.com/mer..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/comprehend/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/comprehend/2017-11-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:comprehend: DataRow\">amazonaws.com:comprehend</span>", children: [2732, 2733, 2768], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-27\nversions: { 2017-11-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:Amazon Comprehend, description:Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehend, x-aws-signingName:comprehend, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehend-2017-11-27.normal.json,... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-10-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-10-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Comprehend Medical"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. \"> Amazon Comprehend Medical extracts s<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2777, 2778], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2781, 2782, 2783, 2784], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2786, 2787], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["comprehendmedical"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["comprehendmedical"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410261, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2793], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2773, 2774, 2775, 2776, 2779, 2780, 2785, 2788, 2789, 2790, 2791, 2792, 2794, 2795, 2796], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-10-30\nx-release: v4\ntitle: AWS Comprehend Medical\ndescription: Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: comprehendmedical\nx-aws-signingName: comprehendmedical\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-10-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/comprehendmedical/\">https://docs.aws.amazon.com/comprehen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2798, 2799], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/comprehendmedical/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-06T20:09:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-10-30: DataRow\">2018-10-30</span>", children: [2772, 2797, 2800, 2801, 2802, 2803, 2804], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-10-30, x-release:v4, title:AWS Comprehend Medical, description: Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehendmedical, x-aws-signingName:comprehendmedical, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehendmedical-2018-10-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/comprehendmedical/ }\nupdated: 2020-05-06T20:09:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2805], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-10-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-30, x-release:v4, title:AWS Comprehend Medical, description: Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehendmedical, x-aws-signingName:comprehendmedical, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehendmedical-2018-10-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:ht..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/comprehendmedical/ }, updated:2020-05-06T20:09:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/comprehendmedical/2018-10-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-10-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:comprehendmedical: DataRow\">amazonaws.com:comprehendmedical</span>", children: [2770, 2771, 2806], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-10-30\nversions: { 2018-10-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-30, x-release:v4, title:AWS Comprehend Medical, description: Amazon Comprehend Medical extracts structured information from unstructured clinical text. Use these actions to gain insight in your documents. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:comprehendmedical, x-aws-signingName:comprehendmedical, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/comprehendmedical-2018-10-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:exter... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Compute Optimizer"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, in addition to projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute Optimizer User Guide</a>.\">Compute Optimizer is a service that a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2815, 2816], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2819, 2820, 2821, 2822], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2824, 2825], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["compute-optimizer"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["compute-optimizer"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410262, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2831], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2811, 2812, 2813, 2814, 2817, 2818, 2823, 2826, 2827, 2828, 2829, 2830, 2832, 2833, 2834], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-11-01\nx-release: v4\ntitle: AWS Compute Optimizer\ndescription: Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, in addition to projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute Optimizer User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: compute-optimizer\nx-aws-signingName: compute-optimizer\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/compute-optimizer/\">https://docs.aws.amazon.com/compute-o<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2836, 2837], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/compute-optimizer/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-11-01: DataRow\">2019-11-01</span>", children: [2810, 2835, 2838, 2839, 2840, 2841, 2842], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-11-01, x-release:v4, title:AWS Compute Optimizer, description:Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, in addition to projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/compute-optimizer/latest/ug/">Compute Optimizer User Guide<..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:compute-optimizer, x-aws-signingName:compute-optimizer, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/compute-optimizer-2019-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/compute-optimizer/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2843], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-01, x-release:v4, title:AWS Compute Optimizer, description:Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, in addition to projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the <a href="https://do..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/compute-optimizer/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/compute-optimizer/2019-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:compute-optimizer: DataRow\">amazonaws.com:compute-optimizer</span>", children: [2808, 2809, 2844], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-11-01\nversions: { 2019-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-01, x-release:v4, title:AWS Compute Optimizer, description:Compute Optimizer is a service that analyzes the configuration and utilization metrics of your Amazon Web Services compute resources, such as Amazon EC2 instances, Amazon EC2 Auto Scaling groups, Lambda functions, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, in addition to projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use t... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-11-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-11-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Config"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Config</fullname> <p>Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources">Supported Amazon Web Services resources</a>.</p> <p>You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services CLI), the Config API, or the Amazon Web Services SDKs for Config. This reference guide contains documentation for the Config API and the Amazon Web Services CLI commands that you can use to manage Config. The Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>. For detailed information about Config features and their associated actions or commands, as well as how to work with Amazon Web Services Management Console, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/WhatIsConfig.html">What Is Config</a> in the <i>Config Developer Guide</i>.</p>\"><fullname>Config</fullname> <p>Config<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2853, 2854], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2857, 2858, 2859, 2860], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2862, 2863], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["config"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410263, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2868], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2849, 2850, 2851, 2852, 2855, 2856, 2861, 2864, 2865, 2866, 2867, 2869, 2870, 2871], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-11-12\nx-release: v4\ntitle: AWS Config\ndescription: <fullname>Config</fullname> <p>Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources">Supported Amazon Web Services resources</a>.</p> <p>You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services CLI), the Config API, or the Amazon Web Services SDKs for Config. This reference guide contains documentation for the Config API and the Amazon Web Services CLI commands that you can use to manage Config. The Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>. For detailed information about Config features and their associated actions or commands, as well as how to work with Amazon Web Services Management Console, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/WhatIsConfig.html">What Is Config</a> in the <i>Config Developer Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: config\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-11-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/config/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2873, 2874], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/config/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-11-12: DataRow\">2014-11-12</span>", children: [2848, 2872, 2875, 2876, 2877, 2878, 2879], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-11-12, x-release:v4, title:AWS Config, description:<fullname>Config</fullname> <p>Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources">Supported Amazon Web Services resources</a>.</p> <p>You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services CLI), the Config API, or the Amazon Web Services SDKs for Config. T..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:config, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/config-2014-11-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/config/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2880], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-11-12: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-12, x-release:v4, title:AWS Config, description:<fullname>Config</fullname> <p>Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources">Supported Amazon Web Services resources</a>.</p> <p>You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Command Line Interface (Amazon Web Services C..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/config/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/config/2014-11-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-11-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:config: DataRow\">amazonaws.com:config</span>", children: [2846, 2847, 2881], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-11-12\nversions: { 2014-11-12:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-12, x-release:v4, title:AWS Config, description:<fullname>Config</fullname> <p>Config provides a way to keep track of the configurations of all the Amazon Web Services resources associated with your Amazon Web Services account. You can use Config to get the current and historical configurations of each Amazon Web Services resource and also to get information about the relationship between the resources. An Amazon Web Services resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by Config, see <a href="https://docs.aws.amazon.com/config/latest/developerguide/resource-config-reference.html#supported-resources">Supported Amazon Web Services resources</a>.</p> <p>You can access and manage Config through the Amazon Web Services Management Console, the Amazon Web Services Comman... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-08-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-08-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Connect Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can connect programmatically to an AWS service by using an endpoint. For a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>.</p> <note> <p>Working with contact flows? Check out the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html">Amazon Connect Flow language</a>.</p> </note>\"><p>Amazon Connect is a cloud-based co<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2890, 2891], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2894, 2895, 2896, 2897], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2899, 2900], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["connect"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["connect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410264, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2906], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2886, 2887, 2888, 2889, 2892, 2893, 2898, 2901, 2902, 2903, 2904, 2905, 2907, 2908, 2909], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-08-08\nx-release: v4\ntitle: Amazon Connect Service\ndescription: <p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can connect programmatically to an AWS service by using an endpoint. For a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>.</p> <note> <p>Working with contact flows? Check out the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html">Amazon Connect Flow language</a>.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: connect\nx-aws-signingName: connect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-08-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/connect/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2911, 2912], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/connect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-08-08: DataRow\">2017-08-08</span>", children: [2885, 2910, 2913, 2914, 2915, 2916, 2917], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-08-08, x-release:v4, title:Amazon Connect Service, description:<p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can connect programmatically to an AWS service by using an endpoint. For a list of Amazon Connect endpoints, see <a href="https://docs.aws.amazon.com/general/latest/gr/connect_region.html">Amazon Connect Endpoints</a>..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:connect, x-aws-signingName:connect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/connect-2017-08-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/connect/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2918], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-08-08: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-08, x-release:v4, title:Amazon Connect Service, description:<p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can connect programmatically to an AWS service by using an endpoint. For a list of Amazon Connect endpoints, see <a href="https://docs.aws...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/connect/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/connect/2017-08-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-08-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:connect: DataRow\">amazonaws.com:connect</span>", children: [2883, 2884, 2919], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-08-08\nversions: { 2017-08-08:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-08, x-release:v4, title:Amazon Connect Service, description:<p>Amazon Connect is a cloud-based contact center solution that you use to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect provides metrics and real-time reporting that enable you to optimize contact routing. You can also resolve customer issues more efficiently by getting customers in touch with the appropriate agents.</p> <p>There are limits to the number of Amazon Connect resources that you can create. There are also limits to the number of requests that you can make per second. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html">Amazon Connect Service Quotas</a> in the <i>Amazon Connect Administrator Guide</i>.</p> <p>You can connect programmatically to an AWS service by using an endpoint. For a list of Amazon Connect en... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-21"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-21"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Connect Contact Lens"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.</p> <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>\"><p>Contact Lens for Amazon Connect en<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2928, 2929], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2932, 2933, 2934, 2935], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2937, 2938], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["connect-contact-lens"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["connect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410265, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2944], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2924, 2925, 2926, 2927, 2930, 2931, 2936, 2939, 2940, 2941, 2942, 2943, 2945, 2946, 2947], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-21\nx-release: v4\ntitle: Amazon Connect Contact Lens\ndescription: <p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.</p> <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: connect-contact-lens\nx-aws-signingName: connect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-21<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/contact-lens/\">https://docs.aws.amazon.com/contact-l<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2949, 2950], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/contact-lens/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-21: DataRow\">2020-08-21</span>", children: [2923, 2948, 2951, 2952, 2953, 2954], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-08-21, x-release:v4, title:Amazon Connect Contact Lens, description:<p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.</p> <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:connect-contact-lens, x-aws-signingName:connect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/connect-contact-lens-2020-08-21.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/contact-lens/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2955], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-21: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-21, x-release:v4, title:Amazon Connect Contact Lens, description:<p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.</p> <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2open..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/contact-lens/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/connect-contact-lens/2020-08-21/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-21: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:connect-contact-lens: DataRow\">amazonaws.com:connect-contact-lens</span>", children: [2921, 2922, 2956], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-08-21\nversions: { 2020-08-21:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-21, x-release:v4, title:Amazon Connect Contact Lens, description:<p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.</p> <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Connect Participant Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Connect is a cloud-based contact center solution that makes it easy to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect enables customer contacts through voice or chat.</p> <p>The APIs described here are used by chat participants, such as agents and customers.</p>\"><p>Amazon Connect is a cloud-based co<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [2965, 2966], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [2969, 2970, 2971, 2972], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [2974, 2975], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["connectparticipant"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["execute-api"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410266, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [2981], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2961, 2962, 2963, 2964, 2967, 2968, 2973, 2976, 2977, 2978, 2979, 2980, 2982, 2983, 2984], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-07\nx-release: v4\ntitle: Amazon Connect Participant Service\ndescription: <p>Amazon Connect is a cloud-based contact center solution that makes it easy to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect enables customer contacts through voice or chat.</p> <p>The APIs described here are used by chat participants, such as agents and customers.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: connectparticipant\nx-aws-signingName: execute-api\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/connect/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [2986, 2987], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/connect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-07: DataRow\">2018-09-07</span>", children: [2960, 2985, 2988, 2989, 2990, 2991, 2992], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-07, x-release:v4, title:Amazon Connect Participant Service, description:<p>Amazon Connect is a cloud-based contact center solution that makes it easy to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect enables customer contacts through voice or chat.</p> <p>The APIs described here are used by chat participants, such as agents and customers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:connectparticipant, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/connectparticipant-2018-09-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/connect/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [2993], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-07, x-release:v4, title:Amazon Connect Participant Service, description:<p>Amazon Connect is a cloud-based contact center solution that makes it easy to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect enables customer contacts through voice or chat.</p> <p>The APIs described here are used by chat participants, such as agents and customers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:connectparticipant, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/connect/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/connectparticipant/2018-09-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:connectparticipant: DataRow\">amazonaws.com:connectparticipant</span>", children: [2958, 2959, 2994], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-07\nversions: { 2018-09-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-07, x-release:v4, title:Amazon Connect Participant Service, description:<p>Amazon Connect is a cloud-based contact center solution that makes it easy to set up and manage a customer contact center and provide reliable customer engagement at any scale.</p> <p>Amazon Connect enables customer contacts through voice or chat.</p> <p>The APIs described here are used by chat participants, such as agents and customers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:connectparticipant, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:application/j... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-01-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-01-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Cost and Usage Report Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete AWS Cost and Usage report definitions.</p> <p>AWS Cost and Usage reports track the monthly AWS costs and usage associated with your AWS account. The report contains line items for each unique combination of AWS product, usage type, and operation that your AWS account uses. You can configure the AWS Cost and Usage report to show only the data that you want, using the AWS Cost and Usage API.</p> <p>Service Endpoint</p> <p>The AWS Cost and Usage Report API provides the following endpoint:</p> <ul> <li> <p>cur.us-east-1.amazonaws.com</p> </li> </ul>\"><p>The AWS Cost and Usage Report API <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3003, 3004], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3007, 3008, 3009, 3010], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3012, 3013], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cur"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["cur"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410267, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3019], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [2999, 3000, 3001, 3002, 3005, 3006, 3011, 3014, 3015, 3016, 3017, 3018, 3020, 3021, 3022], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-01-06\nx-release: v4\ntitle: AWS Cost and Usage Report Service\ndescription: <p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete AWS Cost and Usage report definitions.</p> <p>AWS Cost and Usage reports track the monthly AWS costs and usage associated with your AWS account. The report contains line items for each unique combination of AWS product, usage type, and operation that your AWS account uses. You can configure the AWS Cost and Usage report to show only the data that you want, using the AWS Cost and Usage API.</p> <p>Service Endpoint</p> <p>The AWS Cost and Usage Report API provides the following endpoint:</p> <ul> <li> <p>cur.us-east-1.amazonaws.com</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: cur\nx-aws-signingName: cur\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-01-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/cur/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3024, 3025], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/cur/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-01-06: DataRow\">2017-01-06</span>", children: [2998, 3023, 3026, 3027, 3028, 3029, 3030], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-01-06, x-release:v4, title:AWS Cost and Usage Report Service, description:<p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete AWS Cost and Usage report definitions.</p> <p>AWS Cost and Usage reports track the monthly AWS costs and usage associated with your AWS account. The report contains line items for each unique combination of AWS product, usage type, and operation that your AWS account uses. You can configure the AWS Cost and Usage report to show only the data that you want, using the AWS Cost and Usage API.</p> <p>Service Endpoint</p> <p>The AWS Cost and Usage Report API provides the following endpoint:</p> <ul> <li> <p>cur.us-east-1.amazonaws.com</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:cur, x-aws-signingName:cur, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/cur-2017-01-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cur/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3031], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-01-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-06, x-release:v4, title:AWS Cost and Usage Report Service, description:<p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete AWS Cost and Usage report definitions.</p> <p>AWS Cost and Usage reports track the monthly AWS costs and usage associated with your AWS account. The report contains line items for each unique combination of AWS product, usage type, and operation that your AWS account uses. You can configure the AWS Cost and Usage report to show only the data that you want, using the AWS Cost and Usage API.</p> <p>Service Endpoint</p> <p>The AWS Cost and Usage Report API provides the following endpoint:</p> <ul> <li> <p>cur.us-east-1.amazonaws.com</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/cur/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/cur/2017-01-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-01-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:cur: DataRow\">amazonaws.com:cur</span>", children: [2996, 2997, 3032], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-01-06\nversions: { 2017-01-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-06, x-release:v4, title:AWS Cost and Usage Report Service, description:<p>The AWS Cost and Usage Report API enables you to programmatically create, query, and delete AWS Cost and Usage report definitions.</p> <p>AWS Cost and Usage reports track the monthly AWS costs and usage associated with your AWS account. The report contains line items for each unique combination of AWS product, usage type, and operation that your AWS account uses. You can configure the AWS Cost and Usage report to show only the data that you want, using the AWS Cost and Usage API.</p> <p>Service Endpoint</p> <p>The AWS Cost and Usage Report API provides the following endpoint:</p> <ul> <li> <p>cur.us-east-1.amazonaws.com</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Connect Customer Profiles"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Connect Customer Profiles</fullname> <p>Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.</p> <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.</p> <p>If you're new to Amazon Connect , you might find it helpful to also review the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html">Amazon Connect Administrator Guide</a>.</p>\"><fullname>Amazon Connect Customer Pro<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3041, 3042], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3045, 3046, 3047, 3048], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3050, 3051], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["customer-profiles"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["profile"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410268, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3057], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3037, 3038, 3039, 3040, 3043, 3044, 3049, 3052, 3053, 3054, 3055, 3056, 3058, 3059, 3060], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-15\nx-release: v4\ntitle: Amazon Connect Customer Profiles\ndescription: <fullname>Amazon Connect Customer Profiles</fullname> <p>Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.</p> <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.</p> <p>If you're new to Amazon Connect , you might find it helpful to also review the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html">Amazon Connect Administrator Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: customer-profiles\nx-aws-signingName: profile\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/profile/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3062, 3063], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/profile/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-15: DataRow\">2020-08-15</span>", children: [3036, 3061, 3064, 3065, 3066, 3067], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-08-15, x-release:v4, title:Amazon Connect Customer Profiles, description:<fullname>Amazon Connect Customer Profiles</fullname> <p>Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.</p> <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.</p> <p>If you're new to Amazon Connect , you might find it helpful to also review the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html">Amazon Connect Administrator Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:customer-profiles, x-aws-signingName:profile, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/customer-profiles-2020-08-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/profile/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3068], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-15: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-15, x-release:v4, title:Amazon Connect Customer Profiles, description:<fullname>Amazon Connect Customer Profiles</fullname> <p>Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.</p> <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.</p> <p>If you're new to Amazon Connect , you might find it helpful to also review the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html">Amazon Connect Administrator Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cac..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/profile/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/customer-profiles/2020-08-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:customer-profiles: DataRow\">amazonaws.com:customer-profiles</span>", children: [3034, 3035, 3069], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-08-15\nversions: { 2020-08-15:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-08-15, x-release:v4, title:Amazon Connect Customer Profiles, description:<fullname>Amazon Connect Customer Profiles</fullname> <p>Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.</p> <p>Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.</p> <p>If you're new to Amazon Connect , you might find it helpful to also review the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/what-is-amazon-connect.html">Amazon Connect Administrator Guide</a>.</p>, x-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Glue DataBrew"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required.\">Glue DataBrew is a visual, cloud-scal<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3078, 3079], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3082, 3083, 3084, 3085], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3087, 3088], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["databrew"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["databrew"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410269, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3094], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3074, 3075, 3076, 3077, 3080, 3081, 3086, 3089, 3090, 3091, 3092, 3093, 3095, 3096, 3097], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: AWS Glue DataBrew\ndescription: Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: databrew\nx-aws-signingName: databrew\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/databrew/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3099, 3100], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/databrew/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [3073, 3098, 3101, 3102, 3103, 3104], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2017-07-25, x-release:v4, title:AWS Glue DataBrew, description:Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:databrew, x-aws-signingName:databrew, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/databrew-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/databrew/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3105], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:AWS Glue DataBrew, description:Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:databrew, x-aws-signingName:databrew, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/databrew-2017-07-25.normal...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/databrew/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/databrew/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:databrew: DataRow\">amazonaws.com:databrew</span>", children: [3071, 3072, 3106], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:AWS Glue DataBrew, description:Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:databrew, x-aws-signingName:databrew, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Data Exchange"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p><p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p><p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p><p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets.</p>\"><p>AWS Data Exchange is a service tha<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3115, 3116], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3119, 3120, 3121, 3122], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3124, 3125], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dataexchange"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["dataexchange"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410270, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3131], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3111, 3112, 3113, 3114, 3117, 3118, 3123, 3126, 3127, 3128, 3129, 3130, 3132, 3133, 3134], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: AWS Data Exchange\ndescription: <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p><p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p><p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p><p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: dataexchange\nx-aws-signingName: dataexchange\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/dataexchange/\">https://docs.aws.amazon.com/dataexcha<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3136, 3137], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dataexchange/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-27T20:04:05.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [3110, 3135, 3138, 3139, 3140, 3141, 3142], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-25, x-release:v4, title:AWS Data Exchange, description:<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p><p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p><p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p><p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dataexchange, x-aws-signingName:dataexchange, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/dataexchange-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dataexchange/ }\nupdated: 2020-04-27T20:04:05.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3143], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS Data Exchange, description:<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p><p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p><p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p><p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or in..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dataexchange/ }, updated:2020-04-27T20:04:05.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/dataexchange/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:dataexchange: DataRow\">amazonaws.com:dataexchange</span>", children: [3108, 3109, 3144], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:AWS Data Exchange, description:<p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p><p>As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services.</p><p>As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide.</p><p>A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisio... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-10-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-10-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Data Pipeline"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use the second set in your task runner application to receive the next task ready for processing. The logic for performing the task, such as querying the data, running data analysis, or converting the data from one format to another, is contained within the task runner. The task runner performs the task assigned to it by the web service, reporting progress to the web service as it does so. When the task is done, the task runner reports the final success or failure of the task to the web service.</p>\"><p>AWS Data Pipeline configures and m<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3153, 3154], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3157, 3158, 3159, 3160], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3162, 3163], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["datapipeline"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410271, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3168], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3149, 3150, 3151, 3152, 3155, 3156, 3161, 3164, 3165, 3166, 3167, 3169, 3170, 3171], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-10-29\nx-release: v4\ntitle: AWS Data Pipeline\ndescription: <p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use the second set in your task runner application to receive the next task ready for processing. The logic for performing the task, such as querying the data, running data analysis, or converting the data from one format to another, is contained within the task runner. The task runner performs the task assigned to it by the web service, reporting progress to the web service as it does so. When the task is done, the task runner reports the final success or failure of the task to the web service.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: datapipeline\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-10-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/datapipeline/\">https://docs.aws.amazon.com/datapipel<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3173, 3174], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/datapipeline/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-10-29: DataRow\">2012-10-29</span>", children: [3148, 3172, 3175, 3176, 3177, 3178, 3179], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-10-29, x-release:v4, title:AWS Data Pipeline, description:<p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use the second set in your task runner application to receive the next task ready for processing. The logic for per..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:datapipeline, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/datapipeline-2012-10-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/datapipeline/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3180], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-10-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-10-29, x-release:v4, title:AWS Data Pipeline, description:<p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use the second set in your task runner app..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/datapipeline/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/datapipeline/2012-10-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-10-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:datapipeline: DataRow\">amazonaws.com:datapipeline</span>", children: [3146, 3147, 3181], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-10-29\nversions: { 2012-10-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-10-29, x-release:v4, title:AWS Data Pipeline, description:<p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-09"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-09"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS DataSync"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>DataSync</fullname> <p>DataSync is a managed data transfer service that makes it simpler for you to automate moving data between on-premises storage and Amazon Simple Storage Service (Amazon S3) or Amazon Elastic File System (Amazon EFS). </p> <p>This API interface reference for DataSync contains documentation for a programming interface that you can use to manage DataSync.</p>\"><fullname>DataSync</fullname> <p>Data<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3190, 3191], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3194, 3195, 3196, 3197], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3199, 3200], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["datasync"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["datasync"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410272, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3206], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3186, 3187, 3188, 3189, 3192, 3193, 3198, 3201, 3202, 3203, 3204, 3205, 3207, 3208, 3209], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-09\nx-release: v4\ntitle: AWS DataSync\ndescription: <fullname>DataSync</fullname> <p>DataSync is a managed data transfer service that makes it simpler for you to automate moving data between on-premises storage and Amazon Simple Storage Service (Amazon S3) or Amazon Elastic File System (Amazon EFS). </p> <p>This API interface reference for DataSync contains documentation for a programming interface that you can use to manage DataSync.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: datasync\nx-aws-signingName: datasync\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-09<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/datasync/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3211, 3212], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/datasync/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-09: DataRow\">2018-11-09</span>", children: [3185, 3210, 3213, 3214, 3215, 3216, 3217], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-09, x-release:v4, title:AWS DataSync, description:<fullname>DataSync</fullname> <p>DataSync is a managed data transfer service that makes it simpler for you to automate moving data between on-premises storage and Amazon Simple Storage Service (Amazon S3) or Amazon Elastic File System (Amazon EFS). </p> <p>This API interface reference for DataSync contains documentation for a programming interface that you can use to manage DataSync.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:datasync, x-aws-signingName:datasync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/datasync-2018-11-09.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/datasync/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3218], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-09: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-09, x-release:v4, title:AWS DataSync, description:<fullname>DataSync</fullname> <p>DataSync is a managed data transfer service that makes it simpler for you to automate moving data between on-premises storage and Amazon Simple Storage Service (Amazon S3) or Amazon Elastic File System (Amazon EFS). </p> <p>This API interface reference for DataSync contains documentation for a programming interface that you can use to manage DataSync.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:datasync, x-aws-signingName:datasync, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubuse..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/datasync/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/datasync/2018-11-09/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-09: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:datasync: DataRow\">amazonaws.com:datasync</span>", children: [3183, 3184, 3219], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-09\nversions: { 2018-11-09:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-09, x-release:v4, title:AWS DataSync, description:<fullname>DataSync</fullname> <p>DataSync is a managed data transfer service that makes it simpler for you to automate moving data between on-premises storage and Amazon Simple Storage Service (Amazon S3) or Amazon Elastic File System (Amazon EFS). </p> <p>This API interface reference for DataSync contains documentation for a programming interface that you can use to manage DataSync.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:datasync, x-aws-signingName:datasync, x-origin:[1 x 4] { contentType:appl... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon DynamoDB Accelerator (DAX)"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance.\">DAX is a managed caching service engi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3228, 3229], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3232, 3233, 3234, 3235], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3237, 3238], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dax"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410273, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3243], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3224, 3225, 3226, 3227, 3230, 3231, 3236, 3239, 3240, 3241, 3242, 3244, 3245, 3246], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-04-19\nx-release: v4\ntitle: Amazon DynamoDB Accelerator (DAX)\ndescription: DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: dax\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-04-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/dax/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3248, 3249], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dax/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-04-19: DataRow\">2017-04-19</span>", children: [3223, 3247, 3250, 3251, 3252, 3253, 3254], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-04-19, x-release:v4, title:Amazon DynamoDB Accelerator (DAX), description:DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dax, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/dax-2017-04-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dax/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3255], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-04-19: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:Amazon DynamoDB Accelerator (DAX), description:DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dax, x-origin:[1 x ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dax/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/dax/2017-04-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-04-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:dax: DataRow\">amazonaws.com:dax</span>", children: [3221, 3222, 3256], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-04-19\nversions: { 2017-04-19:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:Amazon DynamoDB Accelerator (DAX), description:DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-10-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-10-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Detective"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and disable Detective. Enabling Detective creates a new behavior graph.</p> </li> <li> <p>View the list of member accounts in a behavior graph.</p> </li> <li> <p>Add member accounts to a behavior graph.</p> </li> <li> <p>Remove member accounts from a behavior graph.</p> </li> </ul> <p>A member account can use the Detective API to do the following:</p> <ul> <li> <p>View the list of behavior graphs that they are invited to.</p> </li> <li> <p>Accept an invitation to contribute to a behavior graph.</p> </li> <li> <p>Decline an invitation to contribute to a behavior graph.</p> </li> <li> <p>Remove their account from a behavior graph.</p> </li> </ul> <p>All API actions are logged as CloudTrail events. See <a href="https://docs.aws.amazon.com/detective/latest/adminguide/logging-using-cloudtrail.html">Logging Detective API Calls with CloudTrail</a>.</p> <note> <p>We replaced the term "master account" with the term "administrator account." An administrator account is used to centrally manage multiple accounts. In the case of Detective, the administrator account manages the accounts in their behavior graph.</p> </note>\"><p>Detective uses machine learning an<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3265, 3266], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3269, 3270, 3271, 3272], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3274, 3275], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["detective"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["detective"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410274, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3281], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3261, 3262, 3263, 3264, 3267, 3268, 3273, 3276, 3277, 3278, 3279, 3280, 3282, 3283, 3284], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-10-26\nx-release: v4\ntitle: Amazon Detective\ndescription: <p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and disable Detective. Enabling Detective creates a new behavior graph.</p> </li> <li> <p>View the list of member accounts in a behavior graph.</p> </li> <li> <p>Add member accounts to a behavior graph.</p> </li> <li> <p>Remove member accounts from a behavior graph.</p> </li> </ul> <p>A member account can use the Detective API to do the following:</p> <ul> <li> <p>View the list of behavior graphs that they are invited to.</p> </li> <li> <p>Accept an invitation to contribute to a behavior graph.</p> </li> <li> <p>Decline an invitation to contribute to a behavior graph.</p> </li> <li> <p>Remove their account from a behavior graph.</p> </li> </ul> <p>All API actions are logged as CloudTrail events. See <a href="https://docs.aws.amazon.com/detective/latest/adminguide/logging-using-cloudtrail.html">Logging Detective API Calls with CloudTrail</a>.</p> <note> <p>We replaced the term "master account" with the term "administrator account." An administrator account is used to centrally manage multiple accounts. In the case of Detective, the administrator account manages the accounts in their behavior graph.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: detective\nx-aws-signingName: detective\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-10-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/detective/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3286, 3287], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/detective/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-31T20:14:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-10-26: DataRow\">2018-10-26</span>", children: [3260, 3285, 3288, 3289, 3290, 3291, 3292], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-10-26, x-release:v4, title:Amazon Detective, description:<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and disable Detective. Enabling Detective creates a new behavior graph.</p>..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:detective, x-aws-signingName:detective, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/detective-2018-10-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/detective/ }\nupdated: 2020-03-31T20:14:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3293], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-10-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-26, x-release:v4, title:Amazon Detective, description:<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the following:</p> <ul> <li> <p>Enable and..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/detective/ }, updated:2020-03-31T20:14:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/detective/2018-10-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-10-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:detective: DataRow\">amazonaws.com:detective</span>", children: [3258, 3259, 3294], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-10-26\nversions: { 2018-10-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-26, x-release:v4, title:Amazon Detective, description:<p>Detective uses machine learning and purpose-built visualizations to help you analyze and investigate security issues across your Amazon Web Services (AWS) workloads. Detective automatically extracts time-based events such as login attempts, API calls, and network traffic from AWS CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by Amazon GuardDuty.</p> <p>The Detective API primarily supports the creation and management of behavior graphs. A behavior graph contains the extracted data from a set of member accounts, and is created and managed by an administrator account.</p> <p>Every behavior graph is specific to a Region. You can only use the API to manage graphs that belong to the Region that is associated with the currently selected endpoint.</p> <p>A Detective administrator account can use the Detective API to do the... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-06-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-06-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Device Farm"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p> </li> </ul>\"><p>Welcome to the AWS Device Farm API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3303, 3304], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3307, 3308, 3309, 3310], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3312, 3313], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["devicefarm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410275, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3318], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3299, 3300, 3301, 3302, 3305, 3306, 3311, 3314, 3315, 3316, 3317, 3319, 3320, 3321], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-06-23\nx-release: v4\ntitle: AWS Device Farm\ndescription: <p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: devicefarm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-06-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/devicefarm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3323, 3324], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/devicefarm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-06-23: DataRow\">2015-06-23</span>", children: [3298, 3322, 3325, 3326, 3327, 3328, 3329], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-06-23, x-release:v4, title:AWS Device Farm, description:<p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:devicefarm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/devicefarm-2015-06-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/devicefarm/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3330], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-06-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-06-23, x-release:v4, title:AWS Device Farm, description:<p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/devicefarm/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/devicefarm/2015-06-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-06-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:devicefarm: DataRow\">amazonaws.com:devicefarm</span>", children: [3296, 3297, 3331], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-06-23\nversions: { 2015-06-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-06-23, x-release:v4, title:AWS Device Farm, description:<p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p> <ul> <li> <p>Testing on desktop browsers</p> <p> Device Farm makes it possible for you to test your web applications on desktop browsers using Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web Applications on Selenium with Device Farm</a>.</p> </li> <li> <p>Testing on real mobile devices</p> <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, bac... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon DevOps Guru"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the AWS resources that you want DevOps Guru to cover, then the Amazon CloudWatch metrics and AWS CloudTrail events related to those resources are analyzed. When anomalous behavior is detected, DevOps Guru creates an <i>insight</i> that includes recommendations, related events, and related metrics that can help you improve your operational applications. For more information, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html">What is Amazon DevOps Guru</a>. </p> <p> You can specify 1 or 2 Amazon Simple Notification Service topics so you are notified every time a new insight is created. You can also enable DevOps Guru to generate an OpsItem in AWS Systems Manager for each insight to help you manage and track your work addressing insights. </p> <p> To learn about the DevOps Guru workflow, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html#how-it-works">How DevOps Guru works</a>. To learn about DevOps Guru concepts, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/concepts.html">Concepts in DevOps Guru</a>. </p>\"><p> Amazon DevOps Guru is a fully man<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3340, 3341], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3344, 3345, 3346, 3347], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3349, 3350], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["devops-guru"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["devops-guru"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410276, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3356], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3336, 3337, 3338, 3339, 3342, 3343, 3348, 3351, 3352, 3353, 3354, 3355, 3357, 3358, 3359], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-12-01\nx-release: v4\ntitle: Amazon DevOps Guru\ndescription: <p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the AWS resources that you want DevOps Guru to cover, then the Amazon CloudWatch metrics and AWS CloudTrail events related to those resources are analyzed. When anomalous behavior is detected, DevOps Guru creates an <i>insight</i> that includes recommendations, related events, and related metrics that can help you improve your operational applications. For more information, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html">What is Amazon DevOps Guru</a>. </p> <p> You can specify 1 or 2 Amazon Simple Notification Service topics so you are notified every time a new insight is created. You can also enable DevOps Guru to generate an OpsItem in AWS Systems Manager for each insight to help you manage and track your work addressing insights. </p> <p> To learn about the DevOps Guru workflow, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html#how-it-works">How DevOps Guru works</a>. To learn about DevOps Guru concepts, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/concepts.html">Concepts in DevOps Guru</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: devops-guru\nx-aws-signingName: devops-guru\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/devops-guru/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3361, 3362], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/devops-guru/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-12-01: DataRow\">2020-12-01</span>", children: [3335, 3360, 3363, 3364, 3365, 3366], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-12-01, x-release:v4, title:Amazon DevOps Guru, description:<p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the AWS resources that you want DevOps Guru to cover, then the Amazon CloudWatch metrics and AWS CloudTrail events related to those resources are analyzed. When anomalous behavior is detected, DevOps Guru creates an <i>insight</i> that includes recommendations, related events, and related metrics that can help you improve your operational applications. For more information, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html">What is Amazon DevOps Guru</a>. </p> <p> You can specify 1 or 2 Amazon Simple Notification Service topics so you are notified every time a new insight is created. You can also enable DevOps Guru to generate an OpsItem in AWS Systems Manager for each insight to help you manage and track your work addressing insights. </p> <p> To learn about the DevOps Guru workflow, see <a href="htt..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:devops-guru, x-aws-signingName:devops-guru, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/devops-guru-2020-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/devops-guru/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3367], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-12-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-12-01, x-release:v4, title:Amazon DevOps Guru, description:<p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the AWS resources that you want DevOps Guru to cover, then the Amazon CloudWatch metrics and AWS CloudTrail events related to those resources are analyzed. When anomalous behavior is detected, DevOps Guru creates an <i>insight</i> that includes recommendations, related events, and related metrics that can help you improve your operational applications. For more information, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html">What is Amazon DevOps Guru</a>. </p> <p> You can specify 1 or 2 Amazon Simple Notification Service topics so you are notified every time a new insight is created. You can also enable DevOps Guru to generate an OpsItem in AWS Systems Manager for each insight to help you manage and track your work addressing in..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/devops-guru/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/devops-guru/2020-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:devops-guru: DataRow\">amazonaws.com:devops-guru</span>", children: [3333, 3334, 3368], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-12-01\nversions: { 2020-12-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-12-01, x-release:v4, title:Amazon DevOps Guru, description:<p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in business critical operational applications. You specify the AWS resources that you want DevOps Guru to cover, then the Amazon CloudWatch metrics and AWS CloudTrail events related to those resources are analyzed. When anomalous behavior is detected, DevOps Guru creates an <i>insight</i> that includes recommendations, related events, and related metrics that can help you improve your operational applications. For more information, see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/welcome.html">What is Amazon DevOps Guru</a>. </p> <p> You can specify 1 or 2 Amazon Simple Notification Service topics so you are notified every time a new insight is created. You can also enable DevOps Guru to generate an OpsItem in AWS Systems Manager for each insight to help you m... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-10-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-10-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Direct Connect"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. With this connection in place, you can create virtual interfaces directly to the Cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all Regions except the China (Beijing) and (China) Ningxia Regions. Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions.\">Direct Connect links your internal ne<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3377, 3378], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3381, 3382, 3383, 3384], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3386, 3387], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["directconnect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410277, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3392], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3373, 3374, 3375, 3376, 3379, 3380, 3385, 3388, 3389, 3390, 3391, 3393, 3394, 3395], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-10-25\nx-release: v4\ntitle: AWS Direct Connect\ndescription: Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. With this connection in place, you can create virtual interfaces directly to the Cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all Regions except the China (Beijing) and (China) Ningxia Regions. Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: directconnect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-10-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/directconnect/\">https://docs.aws.amazon.com/directcon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3397, 3398], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/directconnect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-10-25: DataRow\">2012-10-25</span>", children: [3372, 3396, 3399, 3400, 3401, 3402, 3403], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-10-25, x-release:v4, title:AWS Direct Connect, description:Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. With this connection in place, you can create virtual interfaces directly to the Cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all Regions except the China (Beijing) and (China) Ningxia Regions. Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:directconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/directconnect-2012-10-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/directconnect/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3404], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-10-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-10-25, x-release:v4, title:AWS Direct Connect, description:Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. With this connection in place, you can create virtual interfaces directly to the Cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all Regions except the China (Beijing) and (China) Ningxia Regions. Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twit..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/directconnect/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/directconnect/2012-10-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-10-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:directconnect: DataRow\">amazonaws.com:directconnect</span>", children: [3370, 3371, 3405], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-10-25\nversions: { 2012-10-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-10-25, x-release:v4, title:AWS Direct Connect, description:Direct Connect links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. With this connection in place, you can create virtual interfaces directly to the Cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all Regions except the China (Beijing) and (China) Ningxia Regions. Amazon Web Services resources in the China Regions can only be accessed through locations associated with those Regions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https:/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Application Discovery Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Application Discovery Service</fullname> <p>AWS Application Discovery Service helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">AWS Application Discovery Service FAQ</a>. Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:</p> <ul> <li> <p> <b>Agentless discovery</b> is recommended for environments that use VMware vCenter Server. This mode doesn't require you to install an agent on each host. It does not work in non-VMware environments.</p> <ul> <li> <p>Agentless discovery gathers server information regardless of the operating systems, which minimizes the time required for initial on-premises infrastructure assessment.</p> </li> <li> <p>Agentless discovery doesn't collect information about network dependencies, only agent-based discovery collects that information.</p> </li> </ul> </li> </ul> <ul> <li> <p> <b>Agent-based discovery</b> collects a richer set of data than agentless discovery by using the AWS Application Discovery Agent, which you install on one or more hosts in your data center.</p> <ul> <li> <p> The agent captures infrastructure and application information, including an inventory of running processes, system performance information, resource utilization, and network dependencies.</p> </li> <li> <p>The information collected by agents is secured at rest and in transit to the Application Discovery Service database in the cloud. </p> </li> </ul> </li> </ul> <ul> <li> <p> <b>AWS Partner Network (APN) solutions</b> integrate with Application Discovery Service, enabling you to import details of your on-premises environment directly into Migration Hub without using the discovery connector or discovery agent.</p> <ul> <li> <p>Third-party application discovery tools can query AWS Application Discovery Service, and they can write to the Application Discovery Service database using the public API.</p> </li> <li> <p>In this way, you can import data into Migration Hub and view it, so that you can associate applications with servers and track migrations.</p> </li> </ul> </li> </ul> <p> <b>Recommendations</b> </p> <p>We recommend that you use agent-based discovery for non-VMware environments, and whenever you want to collect information about network dependencies. You can run agent-based and agentless discovery simultaneously. Use agentless discovery to complete the initial infrastructure assessment quickly, and then install agents on select hosts to collect additional information.</p> <p> <b>Working With This Guide</b> </p> <p>This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for Application Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <note> <ul> <li> <p>Remember that you must set your Migration Hub home region before you call any of these APIs.</p> </li> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>Although it is unlikely, the Migration Hub home region could change. If you call APIs outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You must call <code>GetHomeRegion</code> to obtain the latest Migration Hub home region.</p> </li> </ul> </note> <p>This guide is intended for use with the <a href="http://docs.aws.amazon.com/application-discovery/latest/userguide/">AWS Application Discovery Service User Guide</a>.</p> <important> <p>All data is handled according to the <a href="http://aws.amazon.com/privacy/">AWS Privacy Policy</a>. You can operate Application Discovery Service offline to inspect collected data before it is shared with the service.</p> </important>\"><fullname>AWS Application Discovery S<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3414, 3415], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3418, 3419, 3420, 3421], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3423, 3424], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["discovery"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410278, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3429], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3410, 3411, 3412, 3413, 3416, 3417, 3422, 3425, 3426, 3427, 3428, 3430, 3431, 3432], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-11-01\nx-release: v4\ntitle: AWS Application Discovery Service\ndescription: <fullname>AWS Application Discovery Service</fullname> <p>AWS Application Discovery Service helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">AWS Application Discovery Service FAQ</a>. Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:</p> <ul> <li> <p> <b>Agentless discovery</b> is recommended for environments that use VMware vCenter Server. This mode doesn't require you to install an agent on each host. It does not work in non-VMware environments.</p> <ul> <li> <p>Agentless discovery gathers server information regardless of the operating systems, which minimizes the time required for initial on-premises infrastructure assessment.</p> </li> <li> <p>Agentless discovery doesn't collect information about network dependencies, only agent-based discovery collects that information.</p> </li> </ul> </li> </ul> <ul> <li> <p> <b>Agent-based discovery</b> collects a richer set of data than agentless discovery by using the AWS Application Discovery Agent, which you install on one or more hosts in your data center.</p> <ul> <li> <p> The agent captures infrastructure and application information, including an inventory of running processes, system performance information, resource utilization, and network dependencies.</p> </li> <li> <p>The information collected by agents is secured at rest and in transit to the Application Discovery Service database in the cloud. </p> </li> </ul> </li> </ul> <ul> <li> <p> <b>AWS Partner Network (APN) solutions</b> integrate with Application Discovery Service, enabling you to import details of your on-premises environment directly into Migration Hub without using the discovery connector or discovery agent.</p> <ul> <li> <p>Third-party application discovery tools can query AWS Application Discovery Service, and they can write to the Application Discovery Service database using the public API.</p> </li> <li> <p>In this way, you can import data into Migration Hub and view it, so that you can associate applications with servers and track migrations.</p> </li> </ul> </li> </ul> <p> <b>Recommendations</b> </p> <p>We recommend that you use agent-based discovery for non-VMware environments, and whenever you want to collect information about network dependencies. You can run agent-based and agentless discovery simultaneously. Use agentless discovery to complete the initial infrastructure assessment quickly, and then install agents on select hosts to collect additional information.</p> <p> <b>Working With This Guide</b> </p> <p>This API reference provides descriptions, syntax, and usage examples for each of the actions and data types for Application Discovery Service. The topic for each action shows the API request parameters and the response. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> <note> <ul> <li> <p>Remember that you must set your Migration Hub home region before you call any of these APIs.</p> </li> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>Although it is unlikely, the Migration Hub home region could change. If you call APIs outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You must call <code>GetHomeRegion</code> to obtain the latest Migration Hub home region.</p> </li> </ul> </note> <p>This guide is intended for use with the <a href="http://docs.aws.amazon.com/application-discovery/latest/userguide/">AWS Application Discovery Service User Guide</a>.</p> <important> <p>All data is handled according to the <a href="http://aws.amazon.com/privacy/">AWS Privacy Policy</a>. You can operate Application Discovery Service offline to inspect collected data before it is shared with the service.</p> </important>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: discovery\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/discovery/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3434, 3435], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/discovery/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-11-01: DataRow\">2015-11-01</span>", children: [3409, 3433, 3436, 3437, 3438, 3439, 3440], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-11-01, x-release:v4, title:AWS Application Discovery Service, description:<fullname>AWS Application Discovery Service</fullname> <p>AWS Application Discovery Service helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">AWS Application Discovery Service FAQ</a>. Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:</p> <ul> <li> <p> <b>Agentless discovery</b> is recommended for environments that use VMware vCenter Server. This mode doesn't require you to install an agent on each host. It does not work in non-VMware environments.</p> <ul> <li> <p>Agentless discovery gathers server information regardless of the operating systems, which minimizes the time required for initial on-premises infrastructure assessment.</p> </li> <li> <p>Agentless discovery doesn't collect information about netwo..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:discovery, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/discovery-2015-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/discovery/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3441], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-11-01, x-release:v4, title:AWS Application Discovery Service, description:<fullname>AWS Application Discovery Service</fullname> <p>AWS Application Discovery Service helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">AWS Application Discovery Service FAQ</a>. Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:</p> <ul> <li> <p> <b>Agentless discovery</b> is recommended for environments that use VMware vCenter Server. This mode doesn't require you to install an agent on each host. It does not work in non-VMware environments.</p> <ul> <li> <p>Agentless discovery gathers server information regardless of the operating systems, which minimizes the time required for initial on-premises infrastructure ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/discovery/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/discovery/2015-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:discovery: DataRow\">amazonaws.com:discovery</span>", children: [3407, 3408, 3442], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-11-01\nversions: { 2015-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-11-01, x-release:v4, title:AWS Application Discovery Service, description:<fullname>AWS Application Discovery Service</fullname> <p>AWS Application Discovery Service helps you plan application migration projects. It automatically identifies servers, virtual machines (VMs), and network dependencies in your on-premises data centers. For more information, see the <a href="http://aws.amazon.com/application-discovery/faqs/">AWS Application Discovery Service FAQ</a>. Application Discovery Service offers three ways of performing discovery and collecting data about your on-premises servers:</p> <ul> <li> <p> <b>Agentless discovery</b> is recommended for environments that use VMware vCenter Server. This mode doesn't require you to install an agent on each host. It does not work in non-VMware environments.</p> <ul> <li> <p>Agentless discovery gathers server information regardless of the operating systems, which minimizes the time required ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-01-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-01-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Data Lifecycle Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Data Lifecycle Manager</fullname> <p>With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources.</p> <p>Amazon DLM supports Amazon EBS volumes and snapshots. For information about using Amazon DLM with Amazon EBS, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshot-lifecycle.html">Automating the Amazon EBS Snapshot Lifecycle</a> in the <i>Amazon EC2 User Guide</i>.</p>\"><fullname>Amazon Data Lifecycle Manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3451, 3452], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3455, 3456, 3457, 3458], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3460, 3461], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dlm"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["dlm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410279, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3467], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3447, 3448, 3449, 3450, 3453, 3454, 3459, 3462, 3463, 3464, 3465, 3466, 3468, 3469, 3470], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-01-12\nx-release: v4\ntitle: Amazon Data Lifecycle Manager\ndescription: <fullname>Amazon Data Lifecycle Manager</fullname> <p>With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources.</p> <p>Amazon DLM supports Amazon EBS volumes and snapshots. For information about using Amazon DLM with Amazon EBS, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshot-lifecycle.html">Automating the Amazon EBS Snapshot Lifecycle</a> in the <i>Amazon EC2 User Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: dlm\nx-aws-signingName: dlm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-01-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/dlm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3472, 3473], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dlm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-24T20:56:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-01-12: DataRow\">2018-01-12</span>", children: [3446, 3471, 3474, 3475, 3476, 3477, 3478], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-01-12, x-release:v4, title:Amazon Data Lifecycle Manager, description:<fullname>Amazon Data Lifecycle Manager</fullname> <p>With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources.</p> <p>Amazon DLM supports Amazon EBS volumes and snapshots. For information about using Amazon DLM with Amazon EBS, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshot-lifecycle.html">Automating the Amazon EBS Snapshot Lifecycle</a> in the <i>Amazon EC2 User Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dlm, x-aws-signingName:dlm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/dlm-2018-01-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dlm/ }\nupdated: 2020-04-24T20:56:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3479], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-01-12: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-12, x-release:v4, title:Amazon Data Lifecycle Manager, description:<fullname>Amazon Data Lifecycle Manager</fullname> <p>With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources.</p> <p>Amazon DLM supports Amazon EBS volumes and snapshots. For information about using Amazon DLM with Amazon EBS, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshot-lifecycle.html">Automating the Amazon EBS Snapshot Lifecycle</a> in the <i>Amazon EC2 User Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.ap..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dlm/ }, updated:2020-04-24T20:56:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/dlm/2018-01-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-01-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:dlm: DataRow\">amazonaws.com:dlm</span>", children: [3444, 3445, 3480], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-01-12\nversions: { 2018-01-12:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-12, x-release:v4, title:Amazon Data Lifecycle Manager, description:<fullname>Amazon Data Lifecycle Manager</fullname> <p>With Amazon Data Lifecycle Manager, you can manage the lifecycle of your Amazon Web Services resources. You create lifecycle policies, which are used to automate operations on the specified resources.</p> <p>Amazon DLM supports Amazon EBS volumes and snapshots. For information about using Amazon DLM with Amazon EBS, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshot-lifecycle.html">Automating the Amazon EBS Snapshot Lifecycle</a> in the <i>Amazon EC2 User Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ nam... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Database Migration Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Database Migration Service</fullname> <p>Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as heterogeneous migrations between different database platforms, such as Oracle to MySQL or SQL Server to PostgreSQL.</p> <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a> in the <i>Database Migration Service User Guide.</i> </p>\"><fullname>Database Migration Service<<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3489, 3490], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3493, 3494, 3495, 3496], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3498, 3499], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dms"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410280, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3504], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3485, 3486, 3487, 3488, 3491, 3492, 3497, 3500, 3501, 3502, 3503, 3505, 3506, 3507], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-01-01\nx-release: v4\ntitle: AWS Database Migration Service\ndescription: <fullname>Database Migration Service</fullname> <p>Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as heterogeneous migrations between different database platforms, such as Oracle to MySQL or SQL Server to PostgreSQL.</p> <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a> in the <i>Database Migration Service User Guide.</i> </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: dms\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/dms/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3509, 3510], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dms/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-27T20:04:05.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-01-01: DataRow\">2016-01-01</span>", children: [3484, 3508, 3511, 3512, 3513, 3514, 3515], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-01-01, x-release:v4, title:AWS Database Migration Service, description:<fullname>Database Migration Service</fullname> <p>Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as heterogeneous migrations between different database platforms, such as Oracle to MySQL or SQL Server to PostgreSQL.</p> <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a> in the <i>Database Migration Service User Guide.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dms, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/dms-2016-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dms/ }\nupdated: 2020-04-27T20:04:05.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3516], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-01-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-01-01, x-release:v4, title:AWS Database Migration Service, description:<fullname>Database Migration Service</fullname> <p>Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as heterogeneous migrations between different database platforms, such as Oracle to MySQL or SQL Server to PostgreSQL.</p> <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a> in the <i>Database Migration Service User Guide.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dms/ }, updated:2020-04-27T20:04:05.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/dms/2016-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:dms: DataRow\">amazonaws.com:dms</span>", children: [3482, 3483, 3517], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-01-01\nversions: { 2016-01-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-01-01, x-release:v4, title:AWS Database Migration Service, description:<fullname>Database Migration Service</fullname> <p>Database Migration Service (DMS) can migrate your data to and from the most widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as heterogeneous migrations between different database platforms, such as Oracle to MySQL or SQL Server to PostgreSQL.</p> <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a> in the <i>Database Migration Service User Guide.</i> </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-10T20:43:10.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-10T20:43:10.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon DocumentDB with MongoDB compatibility\">Amazon DocumentDB with MongoDB compat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon DocumentDB API documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3526, 3527], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3530, 3531, 3532, 3533], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3535, 3536], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["docdb"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["rds"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410281, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3542], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3522, 3523, 3524, 3525, 3528, 3529, 3534, 3537, 3538, 3539, 3540, 3541, 3543, 3544, 3545], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-10-31\nx-release: v4\ntitle: Amazon DocumentDB with MongoDB compatibility\ndescription: Amazon DocumentDB API documentation\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: docdb\nx-aws-signingName: rds\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-10-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/rds/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3547, 3548], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/rds/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-10-31: DataRow\">2014-10-31</span>", children: [3521, 3546, 3549, 3550, 3551, 3552, 3553], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-10T20:43:10.000Z\ninfo: { version:2014-10-31, x-release:v4, title:Amazon DocumentDB with MongoDB compatibility, description:Amazon DocumentDB API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:docdb, x-aws-signingName:rds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/docdb-2014-10-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-10T20:43:10.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3554], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-10-31: { added:2019-01-10T20:43:10.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon DocumentDB with MongoDB compatibility, description:Amazon DocumentDB API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:docdb, x-aws-signingName:rds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/docdb-2014-10-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:tr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/docdb/2014-10-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-10-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:docdb: DataRow\">amazonaws.com:docdb</span>", children: [3519, 3520, 3555], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-10T20:43:10.000Z\npreferred: 2014-10-31\nversions: { 2014-10-31:{ added:2019-01-10T20:43:10.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon DocumentDB with MongoDB compatibility, description:Amazon DocumentDB API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:docdb, x-aws-signingName:rds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/docdb-2014-10-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apis... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-10T20:43:10.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-04-16"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-04-16"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Directory Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Directory Service</fullname> <p>Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service Administration Guide</a>.</p> <note> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services services. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\"><fullname>Directory Service</fullname<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3564, 3565], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3568, 3569, 3570, 3571], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3573, 3574], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ds"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410282, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3579], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3560, 3561, 3562, 3563, 3566, 3567, 3572, 3575, 3576, 3577, 3578, 3580, 3581, 3582], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-04-16\nx-release: v4\ntitle: AWS Directory Service\ndescription: <fullname>Directory Service</fullname> <p>Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service Administration Guide</a>.</p> <note> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services services. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ds\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-04-16<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ds/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3584, 3585], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ds/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-04-16: DataRow\">2015-04-16</span>", children: [3559, 3583, 3586, 3587, 3588, 3589, 3590], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-04-16, x-release:v4, title:AWS Directory Service, description:<fullname>Directory Service</fullname> <p>Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service Administration Guide</a>.</p> <note> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to Directory Service and other Amazon Web Services services. For more information about the Amazon Web Se..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ds-2015-04-16.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ds/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3591], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-04-16: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-16, x-release:v4, title:AWS Directory Service, description:<fullname>Directory Service</fullname> <p>Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service Administration Guide</a>.</p> <note> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to Directory Service and oth..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ds/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ds/2015-04-16/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-04-16: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ds: DataRow\">amazonaws.com:ds</span>", children: [3557, 3558, 3592], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-04-16\nversions: { 2015-04-16:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-16, x-release:v4, title:AWS Directory Service, description:<fullname>Directory Service</fullname> <p>Directory Service is a web service that makes it easy for you to setup and run directories in the Amazon Web Services cloud, or connect your Amazon Web Services resources with an existing self-managed Microsoft Active Directory. This guide provides detailed information about Directory Service operations, data types, parameters, and errors. For information about Directory Services features, see <a href="https://aws.amazon.com/directoryservice/">Directory Service</a> and the <a href="http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html">Directory Service Administration Guide</a>.</p> <note> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programma... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-08-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-08-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon DynamoDB"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens of operating and scaling a distributed database, so that you don't have to worry about hardware provisioning, setup and configuration, replication, software patching, or cluster scaling.</p> <p>With DynamoDB, you can create database tables that can store and retrieve any amount of data, and serve any level of request traffic. You can scale up or scale down your tables' throughput capacity without downtime or performance degradation, and use the AWS Management Console to monitor resource utilization and performance metrics.</p> <p>DynamoDB automatically spreads the data and traffic for your tables over a sufficient number of servers to handle your throughput and storage requirements, while maintaining consistent and fast performance. All of your data is stored on solid state disks (SSDs) and automatically replicated across multiple Availability Zones in an AWS region, providing built-in high availability and data durability. </p>\"><fullname>Amazon DynamoDB</fullname> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3601, 3602], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3605, 3606, 3607, 3608], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3610, 3611], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dynamodb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410283, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3616], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3597, 3598, 3599, 3600, 3603, 3604, 3609, 3612, 3613, 3614, 3615, 3617, 3618, 3619], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-08-10\nx-release: v4\ntitle: Amazon DynamoDB\ndescription: <fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens of operating and scaling a distributed database, so that you don't have to worry about hardware provisioning, setup and configuration, replication, software patching, or cluster scaling.</p> <p>With DynamoDB, you can create database tables that can store and retrieve any amount of data, and serve any level of request traffic. You can scale up or scale down your tables' throughput capacity without downtime or performance degradation, and use the AWS Management Console to monitor resource utilization and performance metrics.</p> <p>DynamoDB automatically spreads the data and traffic for your tables over a sufficient number of servers to handle your throughput and storage requirements, while maintaining consistent and fast performance. All of your data is stored on solid state disks (SSDs) and automatically replicated across multiple Availability Zones in an AWS region, providing built-in high availability and data durability. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: dynamodb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-08-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/dynamodb/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3621, 3622], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dynamodb/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-08-10: DataRow\">2012-08-10</span>", children: [3596, 3620, 3623, 3624, 3625, 3626, 3627], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-08-10, x-release:v4, title:Amazon DynamoDB, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens of operating and scaling a distributed database, so that you don't have to worry about hardware provisioning, setup and configuration, replication, software patching, or cluster scaling.</p> <p>With DynamoDB, you can create database tables that can store and retrieve any amount of data, and serve any level of request traffic. You can scale up or scale down your tables' throughput capacity without downtime or performance degradation, and use the AWS Management Console to monitor resource utilization and performance metrics.</p> <p>DynamoDB automatically spreads the data and traffic for your tables over a sufficient number of servers to handle your throughput and storage requirements, while maintaining consistent and fast performance. All of your data is stored on..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:dynamodb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/dynamodb-2012-08-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dynamodb/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3628], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-08-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-08-10, x-release:v4, title:Amazon DynamoDB, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens of operating and scaling a distributed database, so that you don't have to worry about hardware provisioning, setup and configuration, replication, software patching, or cluster scaling.</p> <p>With DynamoDB, you can create database tables that can store and retrieve any amount of data, and serve any level of request traffic. You can scale up or scale down your tables' throughput capacity without downtime or performance degradation, and use the AWS Management Console to monitor resource utilization and performance metrics.</p> <p>DynamoDB automatically spreads the data and traffic for your tables over a sufficient number of servers to handle your throughput and storage requirements, while mai..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dynamodb/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/dynamodb/2012-08-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-08-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:dynamodb: DataRow\">amazonaws.com:dynamodb</span>", children: [3594, 3595, 3629], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-08-10\nversions: { 2012-08-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-08-10, x-release:v4, title:Amazon DynamoDB, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB is a fully managed NoSQL database service that provides fast and predictable performance with seamless scalability. DynamoDB lets you offload the administrative burdens of operating and scaling a distributed database, so that you don't have to worry about hardware provisioning, setup and configuration, replication, software patching, or cluster scaling.</p> <p>With DynamoDB, you can create database tables that can store and retrieve any amount of data, and serve any level of request traffic. You can scale up or scale down your tables' throughput capacity without downtime or performance degradation, and use the AWS Management Console to monitor resource utilization and performance metrics.</p> <p>DynamoDB automatically spreads the data and traffic for your tables over a sufficient number of servers to handle your through... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Block Store"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or changes between two snapshots. If you’re an independent software vendor (ISV) who offers backup services for Amazon EBS, the EBS direct APIs make it more efficient and cost-effective to track incremental changes on your Amazon EBS volumes through snapshots. This can be done without having to create new volumes from snapshots, and then use Amazon Elastic Compute Cloud (Amazon EC2) instances to compare the differences.</p> <p>You can create incremental snapshots directly from data on-premises into volumes and the cloud to use for quick disaster recovery. With the ability to write and read snapshots, you can write your on-premises data to an snapshot during a disaster. Then after recovery, you can restore it back to Amazon Web Services or on-premises from the snapshot. You no longer need to build and maintain complex mechanisms to copy data to and from Amazon EBS.</p> <p>This API reference provides detailed information about the actions, data types, parameters, and errors of the EBS direct APIs. For more information about the elements that make up the EBS direct APIs, and examples of how to use them effectively, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-accessing-snapshot.html">Accessing the Contents of an Amazon EBS Snapshot</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>. For more information about the supported Amazon Web Services Regions, endpoints, and service quotas for the EBS direct APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/ebs-service.html">Amazon Elastic Block Store Endpoints and Quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>\"><p>You can use the Amazon Elastic Blo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3638, 3639], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3642, 3643, 3644, 3645], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3647, 3648], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ebs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410284, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3653], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3634, 3635, 3636, 3637, 3640, 3641, 3646, 3649, 3650, 3651, 3652, 3654, 3655, 3656], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-11-02\nx-release: v4\ntitle: Amazon Elastic Block Store\ndescription: <p>You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or changes between two snapshots. If you’re an independent software vendor (ISV) who offers backup services for Amazon EBS, the EBS direct APIs make it more efficient and cost-effective to track incremental changes on your Amazon EBS volumes through snapshots. This can be done without having to create new volumes from snapshots, and then use Amazon Elastic Compute Cloud (Amazon EC2) instances to compare the differences.</p> <p>You can create incremental snapshots directly from data on-premises into volumes and the cloud to use for quick disaster recovery. With the ability to write and read snapshots, you can write your on-premises data to an snapshot during a disaster. Then after recovery, you can restore it back to Amazon Web Services or on-premises from the snapshot. You no longer need to build and maintain complex mechanisms to copy data to and from Amazon EBS.</p> <p>This API reference provides detailed information about the actions, data types, parameters, and errors of the EBS direct APIs. For more information about the elements that make up the EBS direct APIs, and examples of how to use them effectively, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-accessing-snapshot.html">Accessing the Contents of an Amazon EBS Snapshot</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>. For more information about the supported Amazon Web Services Regions, endpoints, and service quotas for the EBS direct APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/ebs-service.html">Amazon Elastic Block Store Endpoints and Quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ebs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-11-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ebs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3658, 3659], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ebs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-11-02: DataRow\">2019-11-02</span>", children: [3633, 3657, 3660, 3661, 3662, 3663, 3664], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-11-02, x-release:v4, title:Amazon Elastic Block Store, description:<p>You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or changes between two snapshots. If you’re an independent software vendor (ISV) who offers backup services for Amazon EBS, the EBS direct APIs make it more efficient and cost-effective to track incremental changes on your Amazon EBS volumes through snapshots. This can be done without having to create new volumes from snapshots, and then use Amazon Elastic Compute Cloud (Amazon EC2) instances to compare the differences.</p> <p>You can create incremental snapshots directly from data on-premises into volumes and the cloud to use for quick disaster recovery. With the ability to write and read snapshots, you can write your on-premises data to an snapshot during a disaster. Then after recovery, you can restore it back to Amazon Web Services or on-premises from the snapshot. You no longer nee..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ebs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ebs-2019-11-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ebs/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3665], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-02, x-release:v4, title:Amazon Elastic Block Store, description:<p>You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or changes between two snapshots. If you’re an independent software vendor (ISV) who offers backup services for Amazon EBS, the EBS direct APIs make it more efficient and cost-effective to track incremental changes on your Amazon EBS volumes through snapshots. This can be done without having to create new volumes from snapshots, and then use Amazon Elastic Compute Cloud (Amazon EC2) instances to compare the differences.</p> <p>You can create incremental snapshots directly from data on-premises into volumes and the cloud to use for quick disaster recovery. With the ability to write and read snapshots, you can write your on-premises data to an snapshot during a disaster. Then after recovery, you can restore ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ebs/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ebs/2019-11-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ebs: DataRow\">amazonaws.com:ebs</span>", children: [3631, 3632, 3666], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-11-02\nversions: { 2019-11-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-02, x-release:v4, title:Amazon Elastic Block Store, description:<p>You can use the Amazon Elastic Block Store (Amazon EBS) direct APIs to create Amazon EBS snapshots, write data directly to your snapshots, read data on your snapshots, and identify the differences or changes between two snapshots. If you’re an independent software vendor (ISV) who offers backup services for Amazon EBS, the EBS direct APIs make it more efficient and cost-effective to track incremental changes on your Amazon EBS volumes through snapshots. This can be done without having to create new volumes from snapshots, and then use Amazon Elastic Compute Cloud (Amazon EC2) instances to compare the differences.</p> <p>You can create incremental snapshots directly from data on-premises into volumes and the cloud to use for quick disaster recovery. With the ability to write and read snapshots, you can write your on-premises data to an snapshot during a disaster... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Compute Cloud"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elastic Compute Cloud</fullname> <p>Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the AWS Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you've defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.</p> <p>To learn more, see the following resources:</p> <ul> <li> <p>Amazon EC2: <a href="http://aws.amazon.com/ec2">AmazonEC2 product page</a>, <a href="http://aws.amazon.com/documentation/ec2">Amazon EC2 documentation</a> </p> </li> <li> <p>Amazon EBS: <a href="http://aws.amazon.com/ebs">Amazon EBS product page</a>, <a href="http://aws.amazon.com/documentation/ebs">Amazon EBS documentation</a> </p> </li> <li> <p>Amazon VPC: <a href="http://aws.amazon.com/vpc">Amazon VPC product page</a>, <a href="http://aws.amazon.com/documentation/vpc">Amazon VPC documentation</a> </p> </li> <li> <p>AWS VPN: <a href="http://aws.amazon.com/vpn">AWS VPN product page</a>, <a href="http://aws.amazon.com/documentation/vpn">AWS VPN documentation</a> </p> </li> </ul>\"><fullname>Amazon Elastic Compute Clou<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3675, 3676], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3679, 3680, 3681, 3682], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3684, 3685], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ec2"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410285, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3690], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3671, 3672, 3673, 3674, 3677, 3678, 3683, 3686, 3687, 3688, 3689, 3691, 3692, 3693], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-15\nx-release: v4\ntitle: Amazon Elastic Compute Cloud\ndescription: <fullname>Amazon Elastic Compute Cloud</fullname> <p>Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the AWS Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you've defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.</p> <p>To learn more, see the following resources:</p> <ul> <li> <p>Amazon EC2: <a href="http://aws.amazon.com/ec2">AmazonEC2 product page</a>, <a href="http://aws.amazon.com/documentation/ec2">Amazon EC2 documentation</a> </p> </li> <li> <p>Amazon EBS: <a href="http://aws.amazon.com/ebs">Amazon EBS product page</a>, <a href="http://aws.amazon.com/documentation/ebs">Amazon EBS documentation</a> </p> </li> <li> <p>Amazon VPC: <a href="http://aws.amazon.com/vpc">Amazon VPC product page</a>, <a href="http://aws.amazon.com/documentation/vpc">Amazon VPC documentation</a> </p> </li> <li> <p>AWS VPN: <a href="http://aws.amazon.com/vpn">AWS VPN product page</a>, <a href="http://aws.amazon.com/documentation/vpn">AWS VPN documentation</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ec2\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ec2/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3695, 3696], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ec2/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-11T19:05:17.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-15: DataRow\">2016-11-15</span>", children: [3670, 3694, 3697, 3698, 3699, 3700, 3701], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-15, x-release:v4, title:Amazon Elastic Compute Cloud, description:<fullname>Amazon Elastic Compute Cloud</fullname> <p>Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the AWS Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you've defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.</p> <p>To learn more, see the following resources:</p> <ul> <li> <p>Amazon EC2: <a href="http://aws.amazon.com/ec2">AmazonEC2 product page</a>, <a href="http://aws.amazon.com/documentation/ec2">Amazon EC2 documentation</a> </p> </li> <li> <p>Amazon EBS: <a href="http://aws.amazon.com/..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ec2, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ec2-2016-11-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ec2/ }\nupdated: 2020-05-11T19:05:17.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3702], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-15, x-release:v4, title:Amazon Elastic Compute Cloud, description:<fullname>Amazon Elastic Compute Cloud</fullname> <p>Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the AWS Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you've defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.</p> <p>To learn more, see the following resources:</p> <ul> <li> <p>Amazon EC2: <a href="http://aws.amazon.com/ec2">AmazonEC2 product page</a>, <a href="http://aws.amazon.com/documentation/ec2">Amazon ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ec2/ }, updated:2020-05-11T19:05:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ec2/2016-11-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ec2: DataRow\">amazonaws.com:ec2</span>", children: [3668, 3669, 3703], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-15\nversions: { 2016-11-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-15, x-release:v4, title:Amazon Elastic Compute Cloud, description:<fullname>Amazon Elastic Compute Cloud</fullname> <p>Amazon Elastic Compute Cloud (Amazon EC2) provides secure and resizable computing capacity in the AWS Cloud. Using Amazon EC2 eliminates the need to invest in hardware up front, so you can develop and deploy applications faster. Amazon Virtual Private Cloud (Amazon VPC) enables you to provision a logically isolated section of the AWS Cloud where you can launch AWS resources in a virtual network that you've defined. Amazon Elastic Block Store (Amazon EBS) provides block level storage volumes for use with EC2 instances. EBS volumes are highly available and reliable storage volumes that can be attached to any running instance and used like a hard drive.</p> <p>To learn more, see the following resources:</p> <ul> <li> <p>Amazon EC2: <a href="http://aws.amazon.com/ec2">AmazonEC2 product page</a>, <a href="http://aw... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-04-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-04-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS EC2 Instance Connect"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH public keys to EC2, providing users a simple and secure way to connect to their instances.\">Amazon EC2 Instance Connect enables s<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3712, 3713], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3716, 3717, 3718, 3719], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3721, 3722], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ec2-instance-connect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410286, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3727], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3708, 3709, 3710, 3711, 3714, 3715, 3720, 3723, 3724, 3725, 3726, 3728, 3729, 3730], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-04-02\nx-release: v4\ntitle: AWS EC2 Instance Connect\ndescription: Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH public keys to EC2, providing users a simple and secure way to connect to their instances.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ec2-instance-connect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-04-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/ec2-instance-connect/\">https://docs.aws.amazon.com/ec2-insta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3732, 3733], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ec2-instance-connect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-04-02: DataRow\">2018-04-02</span>", children: [3707, 3731, 3734, 3735, 3736, 3737, 3738], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-04-02, x-release:v4, title:AWS EC2 Instance Connect, description:Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH public keys to EC2, providing users a simple and secure way to connect to their instances., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ec2-instance-connect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ec2-instance-connect-2018-04-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ec2-instance-connect/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3739], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-04-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-02, x-release:v4, title:AWS EC2 Instance Connect, description:Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH public keys to EC2, providing users a simple and secure way to connect to their instances., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ec2-instance-connect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ec2-instance-connect-2018-04-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ec2-instance-connect/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ec2-instance-connect/2018-04-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-04-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ec2-instance-connect: DataRow\">amazonaws.com:ec2-instance-connect</span>", children: [3705, 3706, 3740], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-04-02\nversions: { 2018-04-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-02, x-release:v4, title:AWS EC2 Instance Connect, description:Amazon EC2 Instance Connect enables system administrators to publish one-time use SSH public keys to EC2, providing users a simple and secure way to connect to their instances., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ec2-instance-connect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ec2-instance-connect-2018-04-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:ext... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-09-21"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-09-21"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon EC2 Container Registry"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elastic Container Registry</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports private repositories with resource-based permissions using IAM so that specific users or Amazon EC2 instances can access repositories and images.</p> <p>Amazon ECR has service endpoints in each supported Region. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecr.html">Amazon ECR endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p>\"><fullname>Amazon Elastic Container Re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3749, 3750], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3753, 3754, 3755, 3756], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3758, 3759], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ecr"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ecr"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410287, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3765], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3745, 3746, 3747, 3748, 3751, 3752, 3757, 3760, 3761, 3762, 3763, 3764, 3766, 3767, 3768], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-09-21\nx-release: v4\ntitle: Amazon EC2 Container Registry\ndescription: <fullname>Amazon Elastic Container Registry</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports private repositories with resource-based permissions using IAM so that specific users or Amazon EC2 instances can access repositories and images.</p> <p>Amazon ECR has service endpoints in each supported Region. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecr.html">Amazon ECR endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ecr\nx-aws-signingName: ecr\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-09-21<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ecr/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3770, 3771], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ecr/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-28T19:55:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-09-21: DataRow\">2015-09-21</span>", children: [3744, 3769, 3772, 3773, 3774, 3775, 3776], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-09-21, x-release:v4, title:Amazon EC2 Container Registry, description:<fullname>Amazon Elastic Container Registry</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports private repositories with resource-based permissions using IAM so that specific users or Amazon EC2 instances can access repositories and images.</p> <p>Amazon ECR has service endpoints in each supported Region. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecr.html">Amazon ECR endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ecr, x-aws-signingName:ecr, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ecr-2015-09-21.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecr/ }\nupdated: 2020-04-28T19:55:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3777], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-09-21: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-09-21, x-release:v4, title:Amazon EC2 Container Registry, description:<fullname>Amazon Elastic Container Registry</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports private repositories with resource-based permissions using IAM so that specific users or Amazon EC2 instances can access repositories and images.</p> <p>Amazon ECR has service endpoints in each supported Region. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecr.html">Amazon ECR endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOf..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecr/ }, updated:2020-04-28T19:55:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecr/2015-09-21/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-09-21: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ecr: DataRow\">amazonaws.com:ecr</span>", children: [3742, 3743, 3778], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-09-21\nversions: { 2015-09-21:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-09-21, x-release:v4, title:Amazon EC2 Container Registry, description:<fullname>Amazon Elastic Container Registry</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Customers can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports private repositories with resource-based permissions using IAM so that specific users or Amazon EC2 instances can access repositories and images.</p> <p>Amazon ECR has service endpoints in each supported Region. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecr.html">Amazon ECR endpoints</a> in the <i>Amazon Web Services General Reference</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-10-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-10-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Container Registry Public"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elastic Container Registry Public</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>\"><fullname>Amazon Elastic Container Re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3787, 3788], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3791, 3792, 3793, 3794], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3796, 3797], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ecr-public"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ecr-public"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410288, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3803], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3783, 3784, 3785, 3786, 3789, 3790, 3795, 3798, 3799, 3800, 3801, 3802, 3804, 3805, 3806], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-10-30\nx-release: v4\ntitle: Amazon Elastic Container Registry Public\ndescription: <fullname>Amazon Elastic Container Registry Public</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ecr-public\nx-aws-signingName: ecr-public\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-10-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ecr-public/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3808, 3809], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ecr-public/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-10-30: DataRow\">2020-10-30</span>", children: [3782, 3807, 3810, 3811, 3812, 3813], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-10-30, x-release:v4, title:Amazon Elastic Container Registry Public, description:<fullname>Amazon Elastic Container Registry Public</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ecr-public, x-aws-signingName:ecr-public, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ecr-public-2020-10-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecr-public/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3814], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-10-30: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-10-30, x-release:v4, title:Amazon Elastic Container Registry Public, description:<fullname>Amazon Elastic Container Registry Public</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-term..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecr-public/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecr-public/2020-10-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-10-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ecr-public: DataRow\">amazonaws.com:ecr-public</span>", children: [3780, 3781, 3815], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-10-30\nversions: { 2020-10-30:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-10-30, x-release:v4, title:Amazon Elastic Container Registry Public, description:<fullname>Amazon Elastic Container Registry Public</fullname> <p>Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/APIReference/Welcome.html">Amazon Elastic Container Registry API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfServ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-11-13"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-11-13"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon EC2 Container Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. Amazon ECS eliminates the need for you to operate your own cluster management and configuration management systems or worry about scaling your management infrastructure.</p>\"><fullname>Amazon Elastic Container Se<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3824, 3825], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3828, 3829, 3830, 3831], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3833, 3834], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ecs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410289, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3839], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3820, 3821, 3822, 3823, 3826, 3827, 3832, 3835, 3836, 3837, 3838, 3840, 3841, 3842], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-11-13\nx-release: v4\ntitle: Amazon EC2 Container Service\ndescription: <fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. Amazon ECS eliminates the need for you to operate your own cluster management and configuration management systems or worry about scaling your management infrastructure.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ecs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-11-13<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ecs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3844, 3845], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ecs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-09T06:28:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-11-13: DataRow\">2014-11-13</span>", children: [3819, 3843, 3846, 3847, 3848, 3849, 3850], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-11-13, x-release:v4, title:Amazon EC2 Container Service, description:<fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. Amazon ECS eliminates the need for you to operate your own cluster management and configuratio..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ecs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ecs-2014-11-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecs/ }\nupdated: 2020-04-09T06:28:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3851], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-11-13: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-13, x-release:v4, title:Amazon EC2 Container Service, description:<fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, and availability requirements. Amazon ECS..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ecs/ }, updated:2020-04-09T06:28:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ecs/2014-11-13/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-11-13: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ecs: DataRow\">amazonaws.com:ecs</span>", children: [3817, 3818, 3852], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-11-13\nversions: { 2014-11-13:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-13, x-release:v4, title:Amazon EC2 Container Service, description:<fullname>Amazon Elastic Container Service</fullname> <p>Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. You can host your cluster on a serverless infrastructure that is managed by Amazon ECS by launching your services or tasks on Fargate. For more control, you can host your tasks on a cluster of Amazon Elastic Compute Cloud (Amazon EC2) instances that you manage.</p> <p>Amazon ECS makes it easy to launch and stop container-based applications with simple API calls, allows you to get the state of your cluster from a centralized service, and gives you access to many familiar Amazon EC2 features.</p> <p>You can use Amazon ECS to schedule the placement of containers across your cluster based on your resource needs, isolation policies, an... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Kubernetes Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>\"><p>Amazon Elastic Kubernetes Service <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3861, 3862], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3865, 3866, 3867, 3868], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3870, 3871], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["eks"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["eks"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410290, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3877], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3857, 3858, 3859, 3860, 3863, 3864, 3869, 3872, 3873, 3874, 3875, 3876, 3878, 3879, 3880], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-01\nx-release: v4\ntitle: Amazon Elastic Kubernetes Service\ndescription: <p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: eks\nx-aws-signingName: eks\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/eks/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3882, 3883], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/eks/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T07:24:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-01: DataRow\">2017-11-01</span>", children: [3856, 3881, 3884, 3885, 3886, 3887, 3888], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-01, x-release:v4, title:Amazon Elastic Kubernetes Service, description:<p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:eks, x-aws-signingName:eks, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/eks-2017-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/eks/ }\nupdated: 2020-03-25T07:24:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3889], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-01, x-release:v4, title:Amazon Elastic Kubernetes Service, description:<p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_ima..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/eks/ }, updated:2020-03-25T07:24:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/eks/2017-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:eks: DataRow\">amazonaws.com:eks</span>", children: [3854, 3855, 3890], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-01\nversions: { 2017-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-01, x-release:v4, title:Amazon Elastic Kubernetes Service, description:<p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs up-to-date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Inference"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: [" Elastic Inference public APIs. "] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3899, 3900], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3903, 3904, 3905, 3906], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3908, 3909], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elastic-inference"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["elastic-inference"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410291, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3915], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3895, 3896, 3897, 3898, 3901, 3902, 3907, 3910, 3911, 3912, 3913, 3914, 3916, 3917, 3918], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: Amazon Elastic Inference\ndescription: Elastic Inference public APIs. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elastic-inference\nx-aws-signingName: elastic-inference\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elastic-inference/\">https://docs.aws.amazon.com/elastic-i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3920, 3921], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elastic-inference/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-24T20:56:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [3894, 3919, 3922, 3923, 3924, 3925, 3926], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-25, x-release:v4, title:Amazon Elastic Inference, description: Elastic Inference public APIs. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastic-inference, x-aws-signingName:elastic-inference, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastic-inference-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elastic-inference/ }\nupdated: 2020-04-24T20:56:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3927], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:Amazon Elastic Inference, description: Elastic Inference public APIs. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastic-inference, x-aws-signingName:elastic-inference, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastic-inference-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud]..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elastic-inference/ }, updated:2020-04-24T20:56:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elastic-inference/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elastic-inference: DataRow\">amazonaws.com:elastic-inference</span>", children: [3892, 3893, 3928], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-25, x-release:v4, title:Amazon Elastic Inference, description: Elastic Inference public APIs. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastic-inference, x-aws-signingName:elastic-inference, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastic-inference-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-02-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-02-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon ElastiCache"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>\"><fullname>Amazon ElastiCache</fullnam<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3937, 3938], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3941, 3942, 3943, 3944], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3946, 3947], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticache"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410292, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3952], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3933, 3934, 3935, 3936, 3939, 3940, 3945, 3948, 3949, 3950, 3951, 3953, 3954, 3955], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-02-02\nx-release: v4\ntitle: Amazon ElastiCache\ndescription: <fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticache\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-02-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/elasticache/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3957, 3958], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticache/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-02-02: DataRow\">2015-02-02</span>", children: [3932, 3956, 3959, 3960, 3961, 3962, 3963], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2015-02-02, x-release:v4, title:Amazon ElastiCache, description:<fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticache, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticache-2015-02-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticache/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [3964], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-02-02: { added:2017-05-02T07:59:53.000Z, info:{ version:2015-02-02, x-release:v4, title:Amazon ElastiCache, description:<fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphso..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticache/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticache/2015-02-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-02-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticache: DataRow\">amazonaws.com:elasticache</span>", children: [3930, 3931, 3965], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2015-02-02\nversions: { 2015-02-02:{ added:2017-05-02T07:59:53.000Z, info:{ version:2015-02-02, x-release:v4, title:Amazon ElastiCache, description:<fullname>Amazon ElastiCache</fullname> <p>Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.</p> <p>With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.</p> <p>In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elastic Beanstalk"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Elastic Beanstalk</fullname> <p>AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.</p> <p>For more information about this product, go to the <a href="http://aws.amazon.com/elasticbeanstalk/">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href="https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl">https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region">Regions and Endpoints</a> in the <i>Amazon Web Services Glossary</i>.</p>\"><fullname>AWS Elastic Beanstalk</full<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [3974, 3975], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [3978, 3979, 3980, 3981], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [3983, 3984], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticbeanstalk"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410293, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [3989], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [3970, 3971, 3972, 3973, 3976, 3977, 3982, 3985, 3986, 3987, 3988, 3990, 3991, 3992], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-12-01\nx-release: v4\ntitle: AWS Elastic Beanstalk\ndescription: <fullname>AWS Elastic Beanstalk</fullname> <p>AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.</p> <p>For more information about this product, go to the <a href="http://aws.amazon.com/elasticbeanstalk/">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href="https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl">https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region">Regions and Endpoints</a> in the <i>Amazon Web Services Glossary</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticbeanstalk\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elasticbeanstalk/\">https://docs.aws.amazon.com/elasticbe<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [3994, 3995], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticbeanstalk/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-07T06:35:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-12-01: DataRow\">2010-12-01</span>", children: [3969, 3993, 3996, 3997, 3998, 3999, 4000], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2010-12-01, x-release:v4, title:AWS Elastic Beanstalk, description:<fullname>AWS Elastic Beanstalk</fullname> <p>AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.</p> <p>For more information about this product, go to the <a href="http://aws.amazon.com/elasticbeanstalk/">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href="https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl">https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of region-specific endpoints that AWS Elastic Beanstalk supports, go to <a href="https://docs.aws.amazon.com/general/latest/gr/rand..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticbeanstalk, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticbeanstalk-2010-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticbeanstalk/ }\nupdated: 2020-04-07T06:35:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4001], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2010-12-01, x-release:v4, title:AWS Elastic Beanstalk, description:<fullname>AWS Elastic Beanstalk</fullname> <p>AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.</p> <p>For more information about this product, go to the <a href="http://aws.amazon.com/elasticbeanstalk/">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href="https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl">https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of region-specific endpoints that AWS Elastic Beanstal..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticbeanstalk/ }, updated:2020-04-07T06:35:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticbeanstalk/2010-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticbeanstalk: DataRow\">amazonaws.com:elasticbeanstalk</span>", children: [3967, 3968, 4002], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2010-12-01\nversions: { 2010-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2010-12-01, x-release:v4, title:AWS Elastic Beanstalk, description:<fullname>AWS Elastic Beanstalk</fullname> <p>AWS Elastic Beanstalk makes it easy for you to create, deploy, and manage scalable, fault-tolerant applications running on the Amazon Web Services cloud.</p> <p>For more information about this product, go to the <a href="http://aws.amazon.com/elasticbeanstalk/">AWS Elastic Beanstalk</a> details page. The location of the latest AWS Elastic Beanstalk WSDL is <a href="https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl">https://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl</a>. To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that enable you to access the API, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> <p> <b>Endpoints</b> </p> <p>For a list of region-speci... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-02-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-02-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic File System"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elastic File System</fullname> <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and remove files, so your applications have the storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>\"><fullname>Amazon Elastic File System<<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4011, 4012], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4015, 4016, 4017, 4018], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4020, 4021], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticfilesystem"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410294, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4026], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4007, 4008, 4009, 4010, 4013, 4014, 4019, 4022, 4023, 4024, 4025, 4027, 4028, 4029], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-02-01\nx-release: v4\ntitle: Amazon Elastic File System\ndescription: <fullname>Amazon Elastic File System</fullname> <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and remove files, so your applications have the storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticfilesystem\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-02-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elasticfilesystem/\">https://docs.aws.amazon.com/elasticfi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4031, 4032], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticfilesystem/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-01T20:52:55.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-02-01: DataRow\">2015-02-01</span>", children: [4006, 4030, 4033, 4034, 4035, 4036, 4037], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-02-01, x-release:v4, title:Amazon Elastic File System, description:<fullname>Amazon Elastic File System</fullname> <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and remove files, so your applications have the storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticfilesystem, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticfilesystem-2015-02-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticfilesystem/ }\nupdated: 2020-05-01T20:52:55.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4038], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-02-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-02-01, x-release:v4, title:Amazon Elastic File System, description:<fullname>Amazon Elastic File System</fullname> <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and remove files, so your applications have the storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticfilesystem/ }, updated:2020-05-01T20:52:55.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticfilesystem/2015-02-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-02-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticfilesystem: DataRow\">amazonaws.com:elasticfilesystem</span>", children: [4004, 4005, 4039], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-02-01\nversions: { 2015-02-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-02-01, x-release:v4, title:Amazon Elastic File System, description:<fullname>Amazon Elastic File System</fullname> <p>Amazon Elastic File System (Amazon EFS) provides simple, scalable file storage for use with Amazon EC2 instances in the Amazon Web Services Cloud. With Amazon EFS, storage capacity is elastic, growing and shrinking automatically as you add and remove files, so your applications have the storage they need, when they need it. For more information, see the <a href="https://docs.aws.amazon.com/efs/latest/ug/api-reference.html">Amazon Elastic File System API Reference</a> and the <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">Amazon Elastic File System User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmai... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-06-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-06-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Elastic Load Balancing"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Elastic Load Balancing</fullname> <p>A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.</p> <p>Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User Guide</a>.</p> <p>This reference covers the 2012-06-01 API, which supports Classic Load Balancers. The 2015-12-01 API supports Application Load Balancers and Network Load Balancers.</p> <p>To get started, create a load balancer with one or more listeners using <a>CreateLoadBalancer</a>. Register your instances with the load balancer using <a>RegisterInstancesWithLoadBalancer</a>.</p> <p>All Elastic Load Balancing operations are <i>idempotent</i>, which means that they complete at most one time. If you repeat an operation, it succeeds with a 200 OK response code.</p>\"><fullname>Elastic Load Balancing</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4048, 4049], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4052, 4053, 4054, 4055], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4057, 4058], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticloadbalancing"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410295, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4063], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4044, 4045, 4046, 4047, 4050, 4051, 4056, 4059, 4060, 4061, 4062, 4064, 4065, 4066], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-06-01\nx-release: v4\ntitle: Elastic Load Balancing\ndescription: <fullname>Elastic Load Balancing</fullname> <p>A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.</p> <p>Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User Guide</a>.</p> <p>This reference covers the 2012-06-01 API, which supports Classic Load Balancers. The 2015-12-01 API supports Application Load Balancers and Network Load Balancers.</p> <p>To get started, create a load balancer with one or more listeners using <a>CreateLoadBalancer</a>. Register your instances with the load balancer using <a>RegisterInstancesWithLoadBalancer</a>.</p> <p>All Elastic Load Balancing operations are <i>idempotent</i>, which means that they complete at most one time. If you repeat an operation, it succeeds with a 200 OK response code.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticloadbalancing\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-06-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elasticloadbalancing/\">https://docs.aws.amazon.com/elasticlo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4068, 4069], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticloadbalancing/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-06-01: DataRow\">2012-06-01</span>", children: [4043, 4067, 4070, 4071, 4072, 4073, 4074], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-06-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.</p> <p>Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User Guide</a>.</p> <p>This reference cover..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticloadbalancing, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticloadbalancing-2012-06-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticloadbalancing/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4075], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-06-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-06-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.</p> <p>Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticloadbalancing/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancing/2012-06-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-06-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticloadbalancing: DataRow\">amazonaws.com:elasticloadbalancing</span>", children: [4041, 4042, 4076], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-06-01\nversions: { 2012-06-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-06-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.</p> <p>Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the <a href="https://docs.aws.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Elastic Load Balancing"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Elastic Load Balancing</fullname> <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.</p> <p>Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This reference covers the following load balancer types:</p> <ul> <li> <p>Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS.</p> </li> <li> <p>Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP.</p> </li> <li> <p>Gateway Load Balancer - Operates at the network layer (layer 3).</p> </li> </ul> <p>For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User Guide</a>.</p> <p>All Elastic Load Balancing operations are idempotent, which means that they complete at most one time. If you repeat an operation, it succeeds.</p>\"><fullname>Elastic Load Balancing</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4085, 4086], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4089, 4090, 4091, 4092], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4094, 4095], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticloadbalancingv2"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410296, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4100], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4081, 4082, 4083, 4084, 4087, 4088, 4093, 4096, 4097, 4098, 4099, 4101, 4102, 4103], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-12-01\nx-release: v4\ntitle: Elastic Load Balancing\ndescription: <fullname>Elastic Load Balancing</fullname> <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.</p> <p>Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This reference covers the following load balancer types:</p> <ul> <li> <p>Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS.</p> </li> <li> <p>Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP.</p> </li> <li> <p>Gateway Load Balancer - Operates at the network layer (layer 3).</p> </li> </ul> <p>For more information, see the <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/">Elastic Load Balancing User Guide</a>.</p> <p>All Elastic Load Balancing operations are idempotent, which means that they complete at most one time. If you repeat an operation, it succeeds.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticloadbalancingv2\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elasticloadbalancing/\">https://docs.aws.amazon.com/elasticlo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4105, 4106], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticloadbalancing/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-12-01: DataRow\">2015-12-01</span>", children: [4080, 4104, 4107, 4108, 4109, 4110, 4111], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-12-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.</p> <p>Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This reference covers the following load balancer types:</p> <ul> <li> <p>Ap..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticloadbalancingv2, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticloadbalancingv2-2015-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticloadbalancing/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4112], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.</p> <p>Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticloadbalancing/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticloadbalancingv2/2015-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticloadbalancingv2: DataRow\">amazonaws.com:elasticloadbalancingv2</span>", children: [4078, 4079, 4113], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-12-01\nversions: { 2015-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-01, x-release:v4, title:Elastic Load Balancing, description:<fullname>Elastic Load Balancing</fullname> <p>A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.</p> <p>Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Loa... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2009-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2009-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon EMR"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management.\">Amazon EMR is a web service that make<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4122, 4123], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4126, 4127, 4128, 4129], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4131, 4132], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elasticmapreduce"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410297, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4137], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4118, 4119, 4120, 4121, 4124, 4125, 4130, 4133, 4134, 4135, 4136, 4138, 4139, 4140], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2009-03-31\nx-release: v4\ntitle: Amazon EMR\ndescription: Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elasticmapreduce\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2009-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elasticmapreduce/\">https://docs.aws.amazon.com/elasticma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4142, 4143], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elasticmapreduce/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T20:02:04.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2009-03-31: DataRow\">2009-03-31</span>", children: [4117, 4141, 4144, 4145, 4146, 4147, 4148], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2009-03-31, x-release:v4, title:Amazon EMR, description:Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticmapreduce, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticmapreduce-2009-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticmapreduce/ }\nupdated: 2020-04-21T20:02:04.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4149], rightAlign: false, values: ["<span class=\"formatted\" title=\"2009-03-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2009-03-31, x-release:v4, title:Amazon EMR, description:Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticmapreduce, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticmapreduce-2009-03-31.normal.json, converter:{ ur..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elasticmapreduce/ }, updated:2020-04-21T20:02:04.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elasticmapreduce/2009-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2009-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elasticmapreduce: DataRow\">amazonaws.com:elasticmapreduce</span>", children: [4115, 4116, 4150], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2009-03-31\nversions: { 2009-03-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2009-03-31, x-release:v4, title:Amazon EMR, description:Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several Amazon Web Services services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elasticmapreduce, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elasticmapreduce... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-09-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-09-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elastic Transcoder"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Elastic Transcoder Service</fullname> <p>The AWS Elastic Transcoder Service.</p>\"><fullname>AWS Elastic Transcoder Serv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4159, 4160], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4163, 4164, 4165, 4166], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4168, 4169], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["elastictranscoder"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410298, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4174], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4155, 4156, 4157, 4158, 4161, 4162, 4167, 4170, 4171, 4172, 4173, 4175, 4176, 4177], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-09-25\nx-release: v4\ntitle: Amazon Elastic Transcoder\ndescription: <fullname>AWS Elastic Transcoder Service</fullname> <p>The AWS Elastic Transcoder Service.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: elastictranscoder\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-09-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/elastictranscoder/\">https://docs.aws.amazon.com/elastictr<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4179, 4180], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/elastictranscoder/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-09-25: DataRow\">2012-09-25</span>", children: [4154, 4178, 4181, 4182, 4183, 4184, 4185], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-09-25, x-release:v4, title:Amazon Elastic Transcoder, description:<fullname>AWS Elastic Transcoder Service</fullname> <p>The AWS Elastic Transcoder Service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastictranscoder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastictranscoder-2012-09-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elastictranscoder/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4186], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-09-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-09-25, x-release:v4, title:Amazon Elastic Transcoder, description:<fullname>AWS Elastic Transcoder Service</fullname> <p>The AWS Elastic Transcoder Service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastictranscoder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastictranscoder-2012-09-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-ap..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/elastictranscoder/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/elastictranscoder/2012-09-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-09-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:elastictranscoder: DataRow\">amazonaws.com:elastictranscoder</span>", children: [4152, 4153, 4187], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-09-25\nversions: { 2012-09-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-09-25, x-release:v4, title:Amazon Elastic Transcoder, description:<fullname>AWS Elastic Transcoder Service</fullname> <p>The AWS Elastic Transcoder Service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:elastictranscoder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/elastictranscoder-2012-09-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/r... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Email Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Simple Email Service</fullname> <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>. </p> <note> <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>.</p> </note>\"><fullname>Amazon Simple Email Service<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4196, 4197], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4200, 4201, 4202, 4203], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4205, 4206], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["email"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ses"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410299, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4212], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4192, 4193, 4194, 4195, 4198, 4199, 4204, 4207, 4208, 4209, 4210, 4211, 4213, 4214, 4215], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-12-01\nx-release: v4\ntitle: Amazon Simple Email Service\ndescription: <fullname>Amazon Simple Email Service</fullname> <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>. </p> <note> <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: email\nx-aws-signingName: ses\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/email/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4217, 4218], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/email/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-12-01: DataRow\">2010-12-01</span>", children: [4191, 4216, 4219, 4220, 4221, 4222, 4223], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2010-12-01, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon Simple Email Service</fullname> <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>. </p> <note> <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:email, x-aws-signingName:ses, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/email-2010-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4224], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2010-12-01, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon Simple Email Service</fullname> <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>. </p> <note> <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphso..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/email/2010-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:email: DataRow\">amazonaws.com:email</span>", children: [4189, 4190, 4225], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2010-12-01\nversions: { 2010-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2010-12-01, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon Simple Email Service</fullname> <p> This document contains reference information for the <a href="https://aws.amazon.com/ses/">Amazon Simple Email Service</a> (Amazon SES) API, version 2010-12-01. This document is best used in conjunction with the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>. </p> <note> <p> For a list of Amazon SES endpoints to use in service requests, see <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/regions.html">Regions and Amazon SES</a> in the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/Welcome.html">Amazon SES Developer Guide</a>.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-10-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-10-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon EMR Containers"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/emr-eks.html">What is Amazon EMR on EKS</a>.</p> <p> <i>Amazon EMR containers</i> is the API name for Amazon EMR on EKS. The <code>emr-containers</code> prefix is used in the following scenarios: </p> <ul> <li> <p>It is the prefix in the CLI commands for Amazon EMR on EKS. For example, <code>aws emr-containers start-job-run</code>.</p> </li> <li> <p>It is the prefix before IAM policy actions for Amazon EMR on EKS. For example, <code>"Action": [ "emr-containers:StartJobRun"]</code>. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/security_iam_service-with-iam.html#security_iam_service-with-iam-id-based-policies-actions">Policy actions for Amazon EMR on EKS</a>.</p> </li> <li> <p>It is the prefix used in Amazon EMR on EKS service endpoints. For example, <code>emr-containers.us-east-2.amazonaws.com</code>. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/service-quotas.html#service-endpoints">Amazon EMR on EKS Service Endpoints</a>.</p> </li> </ul>\"><p>Amazon EMR on EKS provides a deplo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4234, 4235], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4238, 4239, 4240, 4241], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4243, 4244], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["emr-containers"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["emr-containers"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410300, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4250], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4230, 4231, 4232, 4233, 4236, 4237, 4242, 4245, 4246, 4247, 4248, 4249, 4251, 4252, 4253], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-10-01\nx-release: v4\ntitle: Amazon EMR Containers\ndescription: <p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/emr-eks.html">What is Amazon EMR on EKS</a>.</p> <p> <i>Amazon EMR containers</i> is the API name for Amazon EMR on EKS. The <code>emr-containers</code> prefix is used in the following scenarios: </p> <ul> <li> <p>It is the prefix in the CLI commands for Amazon EMR on EKS. For example, <code>aws emr-containers start-job-run</code>.</p> </li> <li> <p>It is the prefix before IAM policy actions for Amazon EMR on EKS. For example, <code>"Action": [ "emr-containers:StartJobRun"]</code>. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/security_iam_service-with-iam.html#security_iam_service-with-iam-id-based-policies-actions">Policy actions for Amazon EMR on EKS</a>.</p> </li> <li> <p>It is the prefix used in Amazon EMR on EKS service endpoints. For example, <code>emr-containers.us-east-2.amazonaws.com</code>. For more information, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/service-quotas.html#service-endpoints">Amazon EMR on EKS Service Endpoints</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: emr-containers\nx-aws-signingName: emr-containers\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-10-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/emr-containers/\">https://docs.aws.amazon.com/emr-conta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4255, 4256], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/emr-containers/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-10-01: DataRow\">2020-10-01</span>", children: [4229, 4254, 4257, 4258, 4259, 4260], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-10-01, x-release:v4, title:Amazon EMR Containers, description:<p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/emr-eks.html">What is Amazon EMR on EKS</a>.</p> <p> <i>Amazon EMR containers</i> is the API name for Amazon EMR on EKS. The <code>emr-containers</code> prefix is used in the following scenarios: </p> <ul> <li> <p>It is the prefix in the CLI commands for Amazon EMR on EKS. For example, <code>aws emr-containers start-job-run</code>.</p> </li> <li> <p>It is the prefix before IAM policy actions for Amazon EMR on EKS. For example, <code>"Action": [ "emr-containers:StartJobRun"]</code>. For more information, s..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:emr-containers, x-aws-signingName:emr-containers, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/emr-containers-2020-10-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/emr-containers/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4261], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-10-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-10-01, x-release:v4, title:Amazon EMR Containers, description:<p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/emr-eks.html">What is Amazon EMR on EKS</a>.</p> <p> <i>Amazon EMR containers</i> is the API name for Amazon EMR on EKS. The <code>emr-containers</code> prefix is used in the following scenarios: </p> <ul> <li> <p>It is the prefix in the CLI commands for Amazon EMR on EKS. For example, <code>aws emr-containers start-job-run</code>.</p> </li> <li> <p>It is the prefix before IAM policy actions for Amazon EMR on EKS. For example, <c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/emr-containers/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/emr-containers/2020-10-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-10-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:emr-containers: DataRow\">amazonaws.com:emr-containers</span>", children: [4227, 4228, 4262], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-10-01\nversions: { 2020-10-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-10-01, x-release:v4, title:Amazon EMR Containers, description:<p>Amazon EMR on EKS provides a deployment option for Amazon EMR that allows you to run open-source big data frameworks on Amazon Elastic Kubernetes Service (Amazon EKS). With this deployment option, you can focus on running analytics workloads while Amazon EMR on EKS builds, configures, and manages containers for open-source applications. For more information about Amazon EMR on EKS concepts and tasks, see <a href="https://docs.aws.amazon.com/emr/latest/EMR-on-EKS-DevelopmentGuide/emr-eks.html">What is Amazon EMR on EKS</a>.</p> <p> <i>Amazon EMR containers</i> is the API name for Amazon EMR on EKS. The <code>emr-containers</code> prefix is used in the following scenarios: </p> <ul> <li> <p>It is the prefix in the CLI commands for Amazon EMR on EKS. For example, <code>aws emr-containers start-job-run</code>.</p> </li> <li> <p>It is the prefix before IAM policy actions... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-01-11"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-01-11"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Marketplace Entitlement Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Marketplace Entitlement Service</fullname> <p>This reference provides descriptions of the AWS Marketplace Entitlement Service API.</p> <p>AWS Marketplace Entitlement Service is used to determine the entitlement of a customer to a given product. An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.</p> <p> <b>Getting Entitlement Records</b> </p> <ul> <li> <p> <i>GetEntitlements</i>- Gets the entitlements for a Marketplace product.</p> </li> </ul>\"><fullname>AWS Marketplace Entitlement<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4271, 4272], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4275, 4276, 4277, 4278], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4280, 4281], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["entitlement.marketplace"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["aws-marketplace"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410301, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4287], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4267, 4268, 4269, 4270, 4273, 4274, 4279, 4282, 4283, 4284, 4285, 4286, 4288, 4289, 4290], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-01-11\nx-release: v4\ntitle: AWS Marketplace Entitlement Service\ndescription: <fullname>AWS Marketplace Entitlement Service</fullname> <p>This reference provides descriptions of the AWS Marketplace Entitlement Service API.</p> <p>AWS Marketplace Entitlement Service is used to determine the entitlement of a customer to a given product. An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.</p> <p> <b>Getting Entitlement Records</b> </p> <ul> <li> <p> <i>GetEntitlements</i>- Gets the entitlements for a Marketplace product.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: entitlement.marketplace\nx-aws-signingName: aws-marketplace\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-01-11<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/marketplace/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4292, 4293], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/marketplace/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-01-11: DataRow\">2017-01-11</span>", children: [4266, 4291, 4294, 4295, 4296, 4297, 4298], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-01-11, x-release:v4, title:AWS Marketplace Entitlement Service, description:<fullname>AWS Marketplace Entitlement Service</fullname> <p>This reference provides descriptions of the AWS Marketplace Entitlement Service API.</p> <p>AWS Marketplace Entitlement Service is used to determine the entitlement of a customer to a given product. An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.</p> <p> <b>Getting Entitlement Records</b> </p> <ul> <li> <p> <i>GetEntitlements</i>- Gets the entitlements for a Marketplace product.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:entitlement.marketplace, x-aws-signingName:aws-marketplace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/entitlement.marketplace-2017-01-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4299], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-01-11: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-11, x-release:v4, title:AWS Marketplace Entitlement Service, description:<fullname>AWS Marketplace Entitlement Service</fullname> <p>This reference provides descriptions of the AWS Marketplace Entitlement Service API.</p> <p>AWS Marketplace Entitlement Service is used to determine the entitlement of a customer to a given product. An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.</p> <p> <b>Getting Entitlement Records</b> </p> <ul> <li> <p> <i>GetEntitlements</i>- Gets the entitlements for a Marketplace product.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2opena..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/entitlement.marketplace/2017-01-11/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-01-11: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:entitlement.marketplace: DataRow\">amazonaws.com:entitlement.marketplace</span>", children: [4264, 4265, 4300], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-01-11\nversions: { 2017-01-11:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-11, x-release:v4, title:AWS Marketplace Entitlement Service, description:<fullname>AWS Marketplace Entitlement Service</fullname> <p>This reference provides descriptions of the AWS Marketplace Entitlement Service API.</p> <p>AWS Marketplace Entitlement Service is used to determine the entitlement of a customer to a given product. An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.</p> <p> <b>Getting Entitlement Records</b> </p> <ul> <li> <p> <i>GetEntitlements</i>- Gets the entitlements for a Marketplace product.</p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, u... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Elasticsearch Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Elasticsearch Configuration Service</fullname> <p>Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.</p> <p>For sample code that uses the Configuration API, see the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-configuration-samples.html">Amazon Elasticsearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-request-signing.html">sample code for sending signed HTTP requests to the Elasticsearch APIs</a>.</p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticsearch-service-regions" target="_blank">Regions and Endpoints</a>.</p>\"><fullname>Amazon Elasticsearch Config<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4309, 4310], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4313, 4314, 4315, 4316], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4318, 4319], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["es"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410302, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4324], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4305, 4306, 4307, 4308, 4311, 4312, 4317, 4320, 4321, 4322, 4323, 4325, 4326, 4327], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-01-01\nx-release: v4\ntitle: Amazon Elasticsearch Service\ndescription: <fullname>Amazon Elasticsearch Configuration Service</fullname> <p>Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.</p> <p>For sample code that uses the Configuration API, see the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-configuration-samples.html">Amazon Elasticsearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-request-signing.html">sample code for sending signed HTTP requests to the Elasticsearch APIs</a>.</p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticsearch-service-regions" target="_blank">Regions and Endpoints</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: es\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/es/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4329, 4330], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/es/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-22T19:13:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-01-01: DataRow\">2015-01-01</span>", children: [4304, 4328, 4331, 4332, 4333, 4334, 4335], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-01-01, x-release:v4, title:Amazon Elasticsearch Service, description:<fullname>Amazon Elasticsearch Configuration Service</fullname> <p>Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.</p> <p>For sample code that uses the Configuration API, see the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-configuration-samples.html">Amazon Elasticsearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-request-signing.html">sample code for sending signed HTTP requests to the Elasticsearch APIs</a>.</p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticsearch-service-regions" target="_blank">Regions and Endpoints</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:es, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/es-2015-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/es/ }\nupdated: 2020-04-22T19:13:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4336], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-01-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-01-01, x-release:v4, title:Amazon Elasticsearch Service, description:<fullname>Amazon Elasticsearch Configuration Service</fullname> <p>Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.</p> <p>For sample code that uses the Configuration API, see the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-configuration-samples.html">Amazon Elasticsearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-request-signing.html">sample code for sending signed HTTP requests to the Elasticsearch APIs</a>.</p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticsearch-service-regions" target="..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/es/ }, updated:2020-04-22T19:13:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/es/2015-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:es: DataRow\">amazonaws.com:es</span>", children: [4302, 4303, 4337], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-01-01\nversions: { 2015-01-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-01-01, x-release:v4, title:Amazon Elasticsearch Service, description:<fullname>Amazon Elasticsearch Configuration Service</fullname> <p>Use the Amazon Elasticsearch Configuration API to create, configure, and manage Elasticsearch domains.</p> <p>For sample code that uses the Configuration API, see the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-configuration-samples.html">Amazon Elasticsearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-request-signing.html">sample code for sending signed HTTP requests to the Elasticsearch APIs</a>.</p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-10-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-10-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon EventBridge"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User Guide</a>.</p>\"><p>Amazon EventBridge helps you to re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4346, 4347], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4350, 4351, 4352, 4353], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4355, 4356], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["eventbridge"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410303, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4361], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4342, 4343, 4344, 4345, 4348, 4349, 4354, 4357, 4358, 4359, 4360, 4362, 4363, 4364], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-10-07\nx-release: v4\ntitle: Amazon EventBridge\ndescription: <p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: eventbridge\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-10-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/events/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4366, 4367], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/events/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-10-07: DataRow\">2015-10-07</span>", children: [4341, 4365, 4368, 4369, 4370, 4371, 4372], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-10-07, x-release:v4, title:Amazon EventBridge, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:eventbridge, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/eventbridge-2015-10-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/events/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4373], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-10-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-07, x-release:v4, title:Amazon EventBridge, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https:/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/events/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/eventbridge/2015-10-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-10-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:eventbridge: DataRow\">amazonaws.com:eventbridge</span>", children: [4339, 4340, 4374], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-10-07\nversions: { 2015-10-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-07, x-release:v4, title:Amazon EventBridge, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-10-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-10-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudWatch Events"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User Guide</a>.</p>\"><p>Amazon EventBridge helps you to re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4383, 4384], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4387, 4388, 4389, 4390], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4392, 4393], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["events"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410304, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4398], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4379, 4380, 4381, 4382, 4385, 4386, 4391, 4394, 4395, 4396, 4397, 4399, 4400, 4401], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-10-07\nx-release: v4\ntitle: Amazon CloudWatch Events\ndescription: <p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: events\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-10-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/events/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4403, 4404], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/events/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-10-07: DataRow\">2015-10-07</span>", children: [4378, 4402, 4405, 4406, 4407, 4408, 4409], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-10-07, x-release:v4, title:Amazon CloudWatch Events, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide">Amazon EventBridge User..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:events, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/events-2015-10-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/events/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4410], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-10-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-07, x-release:v4, title:Amazon CloudWatch Events, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of Amazon EventBridge, see the <a href="h..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/events/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/events/2015-10-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-10-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:events: DataRow\">amazonaws.com:events</span>", children: [4376, 4377, 4411], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-10-07\nversions: { 2015-10-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-07, x-release:v4, title:Amazon CloudWatch Events, description:<p>Amazon EventBridge helps you to respond to state changes in your Amazon Web Services resources. When your resources change state, they automatically send events to an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:</p> <ul> <li> <p>Automatically invoke an Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.</p> </li> <li> <p>Direct specific API records from CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.</p> </li> <li> <p>Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.</p> </li> </ul> <p>For more information about the features of... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-03-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-03-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"FinSpace User Environment Management service\">FinSpace User Environment Management <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The FinSpace management service provides the APIs for managing the FinSpace environments. \">The FinSpace management service provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4420, 4421], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4424, 4425, 4426, 4427], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4429, 4430], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["finspace"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["finspace"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410305, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4436], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4416, 4417, 4418, 4419, 4422, 4423, 4428, 4431, 4432, 4433, 4434, 4435, 4437, 4438, 4439], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-03-12\nx-release: v4\ntitle: FinSpace User Environment Management service\ndescription: The FinSpace management service provides the APIs for managing the FinSpace environments. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: finspace\nx-aws-signingName: finspace\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-03-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/finspace/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4441, 4442], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/finspace/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-03-12: DataRow\">2021-03-12</span>", children: [4415, 4440, 4443, 4444, 4445, 4446], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2021-03-12, x-release:v4, title:FinSpace User Environment Management service, description:The FinSpace management service provides the APIs for managing the FinSpace environments. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace, x-aws-signingName:finspace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-2021-03-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/finspace/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4447], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-03-12: { added:2021-06-18T13:57:32.889Z, info:{ version:2021-03-12, x-release:v4, title:FinSpace User Environment Management service, description:The FinSpace management service provides the APIs for managing the FinSpace environments. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace, x-aws-signingName:finspace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-2021-03-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/in..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/finspace/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/finspace/2021-03-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-03-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:finspace: DataRow\">amazonaws.com:finspace</span>", children: [4413, 4414, 4448], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2021-03-12\nversions: { 2021-03-12:{ added:2021-06-18T13:57:32.889Z, info:{ version:2021-03-12, x-release:v4, title:FinSpace User Environment Management service, description:The FinSpace management service provides the APIs for managing the FinSpace environments. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace, x-aws-signingName:finspace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-2021-03-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amaz... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-13"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-13"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["FinSpace Public API"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" The FinSpace APIs let you take actions inside the FinSpace environment. \"> The FinSpace APIs let you take actio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4457, 4458], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4461, 4462, 4463, 4464], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4466, 4467], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["finspace-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["finspace-api"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410306, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4473], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4453, 4454, 4455, 4456, 4459, 4460, 4465, 4468, 4469, 4470, 4471, 4472, 4474, 4475, 4476], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-13\nx-release: v4\ntitle: FinSpace Public API\ndescription: The FinSpace APIs let you take actions inside the FinSpace environment. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: finspace-data\nx-aws-signingName: finspace-api\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-13<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/finspace-api/\">https://docs.aws.amazon.com/finspace-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4478, 4479], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/finspace-api/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-13: DataRow\">2020-07-13</span>", children: [4452, 4477, 4480, 4481, 4482, 4483], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-07-13, x-release:v4, title:FinSpace Public API, description: The FinSpace APIs let you take actions inside the FinSpace environment. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace-data, x-aws-signingName:finspace-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-data-2020-07-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/finspace-api/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4484], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-13: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-07-13, x-release:v4, title:FinSpace Public API, description: The FinSpace APIs let you take actions inside the FinSpace environment. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace-data, x-aws-signingName:finspace-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-data-2020-07-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisg..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/finspace-api/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/finspace-data/2020-07-13/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-13: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:finspace-data: DataRow\">amazonaws.com:finspace-data</span>", children: [4450, 4451, 4485], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-07-13\nversions: { 2020-07-13:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-07-13, x-release:v4, title:FinSpace Public API, description: The FinSpace APIs let you take actions inside the FinSpace environment. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:finspace-data, x-aws-signingName:finspace-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/finspace-data-2020-07-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/regi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-08-04"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-08-04"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Firehose"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Kinesis Data Firehose API Reference</fullname> <p>Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.</p>\"><fullname>Amazon Kinesis Data Firehos<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4494, 4495], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4498, 4499, 4500, 4501], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4503, 4504], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["firehose"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410307, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4509], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4490, 4491, 4492, 4493, 4496, 4497, 4502, 4505, 4506, 4507, 4508, 4510, 4511, 4512], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-08-04\nx-release: v4\ntitle: Amazon Kinesis Firehose\ndescription: <fullname>Amazon Kinesis Data Firehose API Reference</fullname> <p>Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: firehose\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-08-04<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/firehose/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4514, 4515], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/firehose/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-08-04: DataRow\">2015-08-04</span>", children: [4489, 4513, 4516, 4517, 4518, 4519, 4520], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-08-04, x-release:v4, title:Amazon Kinesis Firehose, description:<fullname>Amazon Kinesis Data Firehose API Reference</fullname> <p>Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:firehose, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/firehose-2015-08-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/firehose/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4521], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-08-04: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-04, x-release:v4, title:Amazon Kinesis Firehose, description:<fullname>Amazon Kinesis Data Firehose API Reference</fullname> <p>Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:firehose, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/firehose-2015-08-04.normal.json, converter:{ url:https://github...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/firehose/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/firehose/2015-08-04/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-08-04: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:firehose: DataRow\">amazonaws.com:firehose</span>", children: [4487, 4488, 4522], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-08-04\nversions: { 2015-08-04:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-04, x-release:v4, title:Amazon Kinesis Firehose, description:<fullname>Amazon Kinesis Data Firehose API Reference</fullname> <p>Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon Elasticsearch Service (Amazon ES), Amazon Redshift, and Splunk.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:firehose, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/firehose-2015-08-04.norma... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Fault Injection Simulator"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">AWS Fault Injection Simulator User Guide</a>.\">AWS Fault Injection Simulator is a ma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4531, 4532], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4535, 4536, 4537, 4538], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4540, 4541], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["fis"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["fis"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410308, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4547], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4527, 4528, 4529, 4530, 4533, 4534, 4539, 4542, 4543, 4544, 4545, 4546, 4548, 4549, 4550], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-12-01\nx-release: v4\ntitle: AWS Fault Injection Simulator\ndescription: AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">AWS Fault Injection Simulator User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: fis\nx-aws-signingName: fis\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/fis/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4552, 4553], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/fis/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-12-01: DataRow\">2020-12-01</span>", children: [4526, 4551, 4554, 4555, 4556, 4557], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-12-01, x-release:v4, title:AWS Fault Injection Simulator, description:AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">AWS Fault Injection Simulator User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fis, x-aws-signingName:fis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fis-2020-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fis/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4558], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-12-01: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-12-01, x-release:v4, title:AWS Fault Injection Simulator, description:AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">AWS Fault Injection Simulator User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fis, x-aws-signingName:fis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fis-2020-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2ope..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fis/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/fis/2020-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:fis: DataRow\">amazonaws.com:fis</span>", children: [4524, 4525, 4559], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-12-01\nversions: { 2020-12-01:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-12-01, x-release:v4, title:AWS Fault Injection Simulator, description:AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">AWS Fault Injection Simulator User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fis, x-aws-signingName:fis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fis-2020-12-01.normal.json, converter:{... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Firewall Management Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the <i>Firewall Manager API Reference</i>. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager Developer Guide</a>.</p> <p>Some API actions require explicit resource permissions. For information, see the developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions for API actions</a>. </p>\"><p>This is the <i>Firewall Manager AP<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4568, 4569], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4572, 4573, 4574, 4575], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4577, 4578], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["fms"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410309, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4583], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4564, 4565, 4566, 4567, 4570, 4571, 4576, 4579, 4580, 4581, 4582, 4584, 4585, 4586], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-01-01\nx-release: v4\ntitle: Firewall Management Service\ndescription: <p>This is the <i>Firewall Manager API Reference</i>. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager Developer Guide</a>.</p> <p>Some API actions require explicit resource permissions. For information, see the developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions for API actions</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: fms\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/fms/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4588, 4589], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/fms/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-22T19:13:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-01-01: DataRow\">2018-01-01</span>", children: [4563, 4587, 4590, 4591, 4592, 4593, 4594], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-01-01, x-release:v4, title:Firewall Management Service, description:<p>This is the <i>Firewall Manager API Reference</i>. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager Developer Guide</a>.</p> <p>Some API actions require explicit resource permissions. For information, see the developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions for API actions</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fms, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fms-2018-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fms/ }\nupdated: 2020-04-22T19:13:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4595], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-01-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-01, x-release:v4, title:Firewall Management Service, description:<p>This is the <i>Firewall Manager API Reference</i>. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager Developer Guide</a>.</p> <p>Some API actions require explicit resource permissions. For information, see the developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions for API actions</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-t..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fms/ }, updated:2020-04-22T19:13:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/fms/2018-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:fms: DataRow\">amazonaws.com:fms</span>", children: [4561, 4562, 4596], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-01-01\nversions: { 2018-01-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-01, x-release:v4, title:Firewall Management Service, description:<p>This is the <i>Firewall Manager API Reference</i>. This guide is for developers who need detailed information about the Firewall Manager API actions, data types, and errors. For detailed information about Firewall Manager features, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-chapter.html">Firewall Manager Developer Guide</a>.</p> <p>Some API actions require explicit resource permissions. For information, see the developer guide topic <a href="https://docs.aws.amazon.com/waf/latest/developerguide/fms-api-permissions-ref.html">Firewall Manager required permissions for API actions</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:http... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Forecast Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Provides APIs for creating and managing Amazon Forecast resources.\">Provides APIs for creating and managi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4605, 4606], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4609, 4610, 4611, 4612], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4614, 4615], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["forecast"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["forecast"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410310, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4621], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4601, 4602, 4603, 4604, 4607, 4608, 4613, 4616, 4617, 4618, 4619, 4620, 4622, 4623, 4624], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-06-26\nx-release: v4\ntitle: Amazon Forecast Service\ndescription: Provides APIs for creating and managing Amazon Forecast resources.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: forecast\nx-aws-signingName: forecast\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-06-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/forecast/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4626, 4627], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/forecast/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-06-26: DataRow\">2018-06-26</span>", children: [4600, 4625, 4628, 4629, 4630, 4631, 4632], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-06-26, x-release:v4, title:Amazon Forecast Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecast, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecast-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/forecast/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4633], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-26, x-release:v4, title:Amazon Forecast Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecast, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecast-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/forecast/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/forecast/2018-06-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:forecast: DataRow\">amazonaws.com:forecast</span>", children: [4598, 4599, 4634], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-06-26\nversions: { 2018-06-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-26, x-release:v4, title:Amazon Forecast Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecast, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecast-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.ht... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Forecast Query Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Provides APIs for creating and managing Amazon Forecast resources.\">Provides APIs for creating and managi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4643, 4644], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4647, 4648, 4649, 4650], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4652, 4653], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["forecastquery"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["forecast"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410311, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4659], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4639, 4640, 4641, 4642, 4645, 4646, 4651, 4654, 4655, 4656, 4657, 4658, 4660, 4661, 4662], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-06-26\nx-release: v4\ntitle: Amazon Forecast Query Service\ndescription: Provides APIs for creating and managing Amazon Forecast resources.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: forecastquery\nx-aws-signingName: forecast\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-06-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/forecastquery/\">https://docs.aws.amazon.com/forecastq<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4664, 4665], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/forecastquery/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-06-26: DataRow\">2018-06-26</span>", children: [4638, 4663, 4666, 4667, 4668, 4669, 4670], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-06-26, x-release:v4, title:Amazon Forecast Query Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecastquery, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecastquery-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/forecastquery/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4671], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-26, x-release:v4, title:Amazon Forecast Query Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecastquery, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecastquery-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisgu..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/forecastquery/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/forecastquery/2018-06-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:forecastquery: DataRow\">amazonaws.com:forecastquery</span>", children: [4636, 4637, 4672], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-06-26\nversions: { 2018-06-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-26, x-release:v4, title:Amazon Forecast Query Service, description:Provides APIs for creating and managing Amazon Forecast resources., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:forecastquery, x-aws-signingName:forecast, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/forecastquery-2018-06-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/regis... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Fraud Detector"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>.\">This is the Amazon Fraud Detector API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4681, 4682], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4685, 4686, 4687, 4688], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4690, 4691], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["frauddetector"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410312, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4696], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4677, 4678, 4679, 4680, 4683, 4684, 4689, 4692, 4693, 4694, 4695, 4697, 4698, 4699], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-11-15\nx-release: v4\ntitle: Amazon Fraud Detector\ndescription: This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: frauddetector\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-11-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/frauddetector/\">https://docs.aws.amazon.com/frauddete<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4701, 4702], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/frauddetector/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-18T14:31:19.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-11-15: DataRow\">2019-11-15</span>", children: [4676, 4700, 4703, 4704, 4705, 4706, 4707], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-11-15, x-release:v4, title:Amazon Fraud Detector, description:This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:frauddetector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/frauddetector-2019-11-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/frauddetector/ }\nupdated: 2020-04-18T14:31:19.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4708], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-15, x-release:v4, title:Amazon Fraud Detector, description:This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:frauddetector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/frauddetector-2019-11-15..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/frauddetector/ }, updated:2020-04-18T14:31:19.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/frauddetector/2019-11-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:frauddetector: DataRow\">amazonaws.com:frauddetector</span>", children: [4674, 4675, 4709], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-11-15\nversions: { 2019-11-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-15, x-release:v4, title:Amazon Fraud Detector, description:This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:frauddetector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-03-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-03-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon FSx"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage.\">Amazon FSx is a fully managed service<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4718, 4719], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4722, 4723, 4724, 4725], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4727, 4728], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["fsx"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["fsx"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410313, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4734], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4714, 4715, 4716, 4717, 4720, 4721, 4726, 4729, 4730, 4731, 4732, 4733, 4735, 4736, 4737], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-03-01\nx-release: v4\ntitle: Amazon FSx\ndescription: Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: fsx\nx-aws-signingName: fsx\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-03-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/fsx/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4739, 4740], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/fsx/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-26T20:05:58.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-03-01: DataRow\">2018-03-01</span>", children: [4713, 4738, 4741, 4742, 4743, 4744, 4745], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-03-01, x-release:v4, title:Amazon FSx, description:Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fsx, x-aws-signingName:fsx, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fsx-2018-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fsx/ }\nupdated: 2020-03-26T20:05:58.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4746], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-03-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-03-01, x-release:v4, title:Amazon FSx, description:Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fsx, x-aws-signingName:fsx, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fsx-2018-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/ind..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/fsx/ }, updated:2020-03-26T20:05:58.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/fsx/2018-03-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-03-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:fsx: DataRow\">amazonaws.com:fsx</span>", children: [4711, 4712, 4747], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-03-01\nversions: { 2018-03-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-03-01, x-release:v4, title:Amazon FSx, description:Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:fsx, x-aws-signingName:fsx, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/fsx-2018-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-10-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-10-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon GameLift"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon GameLift Service</fullname> <p>GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on AWS global computing infrastructure, GameLift helps you deliver high-performance, high-reliability, low-cost game servers while dynamically scaling your resource usage to meet player demand. </p> <p> <b>About GameLift solutions</b> </p> <p>Get more information on these GameLift solutions in the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/">GameLift Developer Guide</a>.</p> <ul> <li> <p>GameLift managed hosting -- GameLift offers a fully managed service to set up and maintain computing machines for hosting, manage game session and player session life cycle, and handle security, storage, and performance tracking. You can use automatic scaling tools to balance player demand and hosting costs, configure your game session management to minimize player latency, and add FlexMatch for matchmaking.</p> </li> <li> <p>Managed hosting with Realtime Servers -- With GameLift Realtime Servers, you can quickly configure and set up ready-to-go game servers for your game. Realtime Servers provides a game server framework with core GameLift infrastructure already built in. Then use the full range of GameLift managed hosting features, including FlexMatch, for your game.</p> </li> <li> <p>GameLift FleetIQ -- Use GameLift FleetIQ as a standalone service while hosting your games using EC2 instances and Auto Scaling groups. GameLift FleetIQ provides optimizations for game hosting, including boosting the viability of low-cost Spot Instances gaming. For a complete solution, pair the GameLift FleetIQ and FlexMatch standalone services.</p> </li> <li> <p>GameLift FlexMatch -- Add matchmaking to your game hosting solution. FlexMatch is a customizable matchmaking service for multiplayer games. Use FlexMatch as integrated with GameLift managed hosting or incorporate FlexMatch as a standalone service into your own hosting solution.</p> </li> </ul> <p> <b>About this API Reference</b> </p> <p>This reference guide describes the low-level service API for Amazon GameLift. With each topic in this guide, you can find links to language-specific SDK guides and the AWS CLI reference. Useful links:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html">GameLift API operations listed by tasks</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-components.html"> GameLift tools and resources</a> </p> </li> </ul>\"><fullname>Amazon GameLift Service</fu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4756, 4757], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4760, 4761, 4762, 4763], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4765, 4766], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gamelift"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410314, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4771], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4752, 4753, 4754, 4755, 4758, 4759, 4764, 4767, 4768, 4769, 4770, 4772, 4773, 4774], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-10-01\nx-release: v4\ntitle: Amazon GameLift\ndescription: <fullname>Amazon GameLift Service</fullname> <p>GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on AWS global computing infrastructure, GameLift helps you deliver high-performance, high-reliability, low-cost game servers while dynamically scaling your resource usage to meet player demand. </p> <p> <b>About GameLift solutions</b> </p> <p>Get more information on these GameLift solutions in the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/">GameLift Developer Guide</a>.</p> <ul> <li> <p>GameLift managed hosting -- GameLift offers a fully managed service to set up and maintain computing machines for hosting, manage game session and player session life cycle, and handle security, storage, and performance tracking. You can use automatic scaling tools to balance player demand and hosting costs, configure your game session management to minimize player latency, and add FlexMatch for matchmaking.</p> </li> <li> <p>Managed hosting with Realtime Servers -- With GameLift Realtime Servers, you can quickly configure and set up ready-to-go game servers for your game. Realtime Servers provides a game server framework with core GameLift infrastructure already built in. Then use the full range of GameLift managed hosting features, including FlexMatch, for your game.</p> </li> <li> <p>GameLift FleetIQ -- Use GameLift FleetIQ as a standalone service while hosting your games using EC2 instances and Auto Scaling groups. GameLift FleetIQ provides optimizations for game hosting, including boosting the viability of low-cost Spot Instances gaming. For a complete solution, pair the GameLift FleetIQ and FlexMatch standalone services.</p> </li> <li> <p>GameLift FlexMatch -- Add matchmaking to your game hosting solution. FlexMatch is a customizable matchmaking service for multiplayer games. Use FlexMatch as integrated with GameLift managed hosting or incorporate FlexMatch as a standalone service into your own hosting solution.</p> </li> </ul> <p> <b>About this API Reference</b> </p> <p>This reference guide describes the low-level service API for Amazon GameLift. With each topic in this guide, you can find links to language-specific SDK guides and the AWS CLI reference. Useful links:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html">GameLift API operations listed by tasks</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-components.html"> GameLift tools and resources</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: gamelift\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-10-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/gamelift/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4776, 4777], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/gamelift/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-02T18:31:21.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-10-01: DataRow\">2015-10-01</span>", children: [4751, 4775, 4778, 4779, 4780, 4781, 4782], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-10-01, x-release:v4, title:Amazon GameLift, description:<fullname>Amazon GameLift Service</fullname> <p>GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on AWS global computing infrastructure, GameLift helps you deliver high-performance, high-reliability, low-cost game servers while dynamically scaling your resource usage to meet player demand. </p> <p> <b>About GameLift solutions</b> </p> <p>Get more information on these GameLift solutions in the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/">GameLift Developer Guide</a>.</p> <ul> <li> <p>GameLift managed hosting -- GameLift offers a fully managed service to set up and maintain computing machines for hosting, manage game session and player session life cycle, and handle security, storage, and performance tracking. You can use automatic scaling tools to balance player demand and hosting costs, configure your game session management to minimize playe..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:gamelift, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/gamelift-2015-10-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/gamelift/ }\nupdated: 2020-04-02T18:31:21.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4783], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-10-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-01, x-release:v4, title:Amazon GameLift, description:<fullname>Amazon GameLift Service</fullname> <p>GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on AWS global computing infrastructure, GameLift helps you deliver high-performance, high-reliability, low-cost game servers while dynamically scaling your resource usage to meet player demand. </p> <p> <b>About GameLift solutions</b> </p> <p>Get more information on these GameLift solutions in the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/">GameLift Developer Guide</a>.</p> <ul> <li> <p>GameLift managed hosting -- GameLift offers a fully managed service to set up and maintain computing machines for hosting, manage game session and player session life cycle, and handle security, storage, and performance tracking. You can use automatic scaling tools to balance player demand and ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/gamelift/ }, updated:2020-04-02T18:31:21.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/gamelift/2015-10-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-10-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:gamelift: DataRow\">amazonaws.com:gamelift</span>", children: [4749, 4750, 4784], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-10-01\nversions: { 2015-10-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-10-01, x-release:v4, title:Amazon GameLift, description:<fullname>Amazon GameLift Service</fullname> <p>GameLift provides solutions for hosting session-based multiplayer game servers in the cloud, including tools for deploying, operating, and scaling game servers. Built on AWS global computing infrastructure, GameLift helps you deliver high-performance, high-reliability, low-cost game servers while dynamically scaling your resource usage to meet player demand. </p> <p> <b>About GameLift solutions</b> </p> <p>Get more information on these GameLift solutions in the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/">GameLift Developer Guide</a>.</p> <ul> <li> <p>GameLift managed hosting -- GameLift offers a fully managed service to set up and maintain computing machines for hosting, manage game session and player session life cycle, and handle security, storage, and performance tracking. You can use automatic scal... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-06-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-06-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Glacier"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p> <p>Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Glacier, customers can store their data cost effectively for months, years, or decades. Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Glacier is a great storage choice when low storage cost is paramount and your data is rarely retrieved. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, see <a href="http://aws.amazon.com/s3/">Amazon Simple Storage Service (Amazon S3)</a>.</p> <p>You can store any kind of data in any format. There is no maximum limit on the total amount of data you can store in Glacier.</p> <p>If you are a first-time user of Glacier, we recommend that you begin by reading the following sections in the <i>Amazon S3 Glacier Developer Guide</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/introduction.html">What is Amazon S3 Glacier</a> - This section of the Developer Guide describes the underlying data model, the operations it supports, and the AWS SDKs that you can use to interact with the service.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/amazon-glacier-getting-started.html">Getting Started with Amazon S3 Glacier</a> - The Getting Started section walks you through the process of creating a vault, uploading archives, creating jobs to download archives, retrieving the job output, and deleting archives.</p> </li> </ul>\"><p> Amazon S3 Glacier (Glacier) is a <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4793, 4794], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4797, 4798, 4799, 4800], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4802, 4803], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["glacier"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410315, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4808], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4789, 4790, 4791, 4792, 4795, 4796, 4801, 4804, 4805, 4806, 4807, 4809, 4810, 4811], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-06-01\nx-release: v4\ntitle: Amazon Glacier\ndescription: <p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p> <p>Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Glacier, customers can store their data cost effectively for months, years, or decades. Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Glacier is a great storage choice when low storage cost is paramount and your data is rarely retrieved. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, see <a href="http://aws.amazon.com/s3/">Amazon Simple Storage Service (Amazon S3)</a>.</p> <p>You can store any kind of data in any format. There is no maximum limit on the total amount of data you can store in Glacier.</p> <p>If you are a first-time user of Glacier, we recommend that you begin by reading the following sections in the <i>Amazon S3 Glacier Developer Guide</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/introduction.html">What is Amazon S3 Glacier</a> - This section of the Developer Guide describes the underlying data model, the operations it supports, and the AWS SDKs that you can use to interact with the service.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/amazon-glacier-getting-started.html">Getting Started with Amazon S3 Glacier</a> - The Getting Started section walks you through the process of creating a vault, uploading archives, creating jobs to download archives, retrieving the job output, and deleting archives.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: glacier\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-06-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/glacier/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4813, 4814], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/glacier/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-06-01: DataRow\">2012-06-01</span>", children: [4788, 4812, 4815, 4816, 4817, 4818, 4819], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2012-06-01, x-release:v4, title:Amazon Glacier, description:<p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p> <p>Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Glacier, customers can store their data cost effectively for months, years, or decades. Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Glacier is a great storage choice when low storage cost is paramount and your data is rarely retrieved. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, see <a href="http://aws.amazon.com/s3/">Amazon Simple Storage Service (Amazon S3)</a>.</p> <p>You can store any kind of data in any format. There is no maximum limit on the total amount of dat..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:glacier, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/glacier-2012-06-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/glacier/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4820], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-06-01: { added:2017-05-02T07:59:53.000Z, info:{ version:2012-06-01, x-release:v4, title:Amazon Glacier, description:<p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p> <p>Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Glacier, customers can store their data cost effectively for months, years, or decades. Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Glacier is a great storage choice when low storage cost is paramount and your data is rarely retrieved. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, see <a href="http://aws.amazon.com/s3/">Amazon Simple Storage Service (Amazon S3)</a>.</p> <p>You can store any kind of da..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/glacier/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/glacier/2012-06-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-06-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:glacier: DataRow\">amazonaws.com:glacier</span>", children: [4786, 4787, 4821], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2012-06-01\nversions: { 2012-06-01:{ added:2017-05-02T07:59:53.000Z, info:{ version:2012-06-01, x-release:v4, title:Amazon Glacier, description:<p> Amazon S3 Glacier (Glacier) is a storage solution for "cold data."</p> <p>Glacier is an extremely low-cost storage service that provides secure, durable, and easy-to-use storage for data backup and archival. With Glacier, customers can store their data cost effectively for months, years, or decades. Glacier also enables customers to offload the administrative burdens of operating and scaling storage to AWS, so they don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure and recovery, or time-consuming hardware migrations.</p> <p>Glacier is a great storage choice when low storage cost is paramount and your data is rarely retrieved. If your application requires fast or frequent access to your data, consider using Amazon S3. For more information, see <a href="http://aws.amazon.com/s3/">Amazon Simple Storage Service (Amazon S3)</... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-08-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-08-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Global Accelerator"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Global Accelerator</fullname> <p>This is the <i>AWS Global Accelerator API Reference</i>. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html">AWS Global Accelerator Developer Guide</a>.</p> <p>AWS Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits. </p> <ul> <li> <p>By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the AWS global network. </p> </li> <li> <p>For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you can use application logic to directly map one or more users to a specific endpoint among many endpoints.</p> </li> </ul> <important> <p>Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.</p> </important> <p>By default, Global Accelerator provides you with two static IP addresses that you associate with your accelerator. With a standard accelerator, instead of using the IP addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator. The static IP addresses are anycast from the AWS edge network. For a standard accelerator, they distribute incoming application traffic across multiple endpoint resources in multiple AWS Regions, which increases the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses that are located in one AWS Region or multiple Regions. For custom routing accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that are virtual private cloud (VPC) subnets.</p> <important> <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p> </important> <p>For standard accelerators, Global Accelerator uses the AWS global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is always directed to healthy endpoints.</p> <p>For a list of the AWS Regions where Global Accelerator and other services are currently supported, see the <a href="https://docs.aws.amazon.com/about-aws/global-infrastructure/regional-product-services/">AWS Region Table</a>.</p> <p>AWS Global Accelerator includes the following components:</p> <dl> <dt>Static IP addresses</dt> <dd> <p>Global Accelerator provides you with a set of two static IP addresses that are anycast from the AWS edge network. If you bring your own IP address range to AWS (BYOIP) to use with a standard accelerator, you can instead assign IP addresses from your own pool to use with your accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html"> Bring your own IP addresses (BYOIP) in AWS Global Accelerator</a>.</p> <p>The IP addresses serve as single fixed entry points for your clients. If you already have Elastic Load Balancing load balancers, Amazon EC2 instances, or Elastic IP address resources set up for your applications, you can easily add those to a standard accelerator in Global Accelerator. This allows Global Accelerator to use static IP addresses to access the resources.</p> <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p> </dd> <dt>Accelerator</dt> <dd> <p>An accelerator directs traffic to endpoints over the AWS global network to improve the performance of your internet applications. Each accelerator includes one or more listeners.</p> <p>There are two types of accelerators:</p> <ul> <li> <p>A <i>standard</i> accelerator directs traffic to the optimal AWS endpoint based on several factors, including the user’s location, the health of the endpoint, and the endpoint weights that you configure. This improves the availability and performance of your applications. Endpoints can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses.</p> </li> <li> <p>A <i>custom routing</i> accelerator directs traffic to one of possibly thousands of Amazon EC2 instances running in a single or multiple virtual private clouds (VPCs). With custom routing, listener ports are mapped to statically associate port ranges with VPC subnets, which allows Global Accelerator to determine an EC2 instance IP address at the time of connection. By default, all port mapping destinations in a VPC subnet can't receive traffic. You can choose to configure all destinations in the subnet to receive traffic, or to specify individual port mappings that can receive traffic.</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/introduction-accelerator-types.html">Types of accelerators</a>.</p> </dd> <dt>DNS name</dt> <dd> <p>Global Accelerator assigns each accelerator a default Domain Name System (DNS) name, similar to <code>a1234567890abcdef.awsglobalaccelerator.com</code>, that points to the static IP addresses that Global Accelerator assigns to you or that you choose from your own IP address range. Depending on the use case, you can use your accelerator's static IP addresses or DNS name to route traffic to your accelerator, or set up DNS records to route traffic using your own custom domain name.</p> </dd> <dt>Network zone</dt> <dd> <p>A network zone services the static IP addresses for your accelerator from a unique IP subnet. Similar to an AWS Availability Zone, a network zone is an isolated unit with its own set of physical infrastructure. When you configure an accelerator, by default, Global Accelerator allocates two IPv4 addresses for it. If one IP address from a network zone becomes unavailable due to IP address blocking by certain client networks, or network disruptions, then client applications can retry on the healthy static IP address from the other isolated network zone.</p> </dd> <dt>Listener</dt> <dd> <p>A listener processes inbound connections from clients to Global Accelerator, based on the port (or port range) and protocol (or protocols) that you configure. A listener can be configured for TCP, UDP, or both TCP and UDP protocols. Each listener has one or more endpoint groups associated with it, and traffic is forwarded to endpoints in one of the groups. You associate endpoint groups with listeners by specifying the Regions that you want to distribute traffic to. With a standard accelerator, traffic is distributed to optimal endpoints within the endpoint groups associated with a listener.</p> </dd> <dt>Endpoint group</dt> <dd> <p>Each endpoint group is associated with a specific AWS Region. Endpoint groups include one or more endpoints in the Region. With a standard accelerator, you can increase or reduce the percentage of traffic that would be otherwise directed to an endpoint group by adjusting a setting called a <i>traffic dial</i>. The traffic dial lets you easily do performance testing or blue/green deployment testing, for example, for new releases across different AWS Regions. </p> </dd> <dt>Endpoint</dt> <dd> <p>An endpoint is a resource that Global Accelerator directs traffic to.</p> <p>Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses. An Application Load Balancer endpoint can be internet-facing or internal. Traffic for standard accelerators is routed to endpoints based on the health of the endpoint along with configuration options that you choose, such as endpoint weights. For each endpoint, you can configure weights, which are numbers that you can use to specify the proportion of traffic to route to each one. This can be useful, for example, to do performance testing within a Region.</p> <p>Endpoints for custom routing accelerators are virtual private cloud (VPC) subnets with one or many EC2 instances.</p> </dd> </dl>\"><fullname>AWS Global Accelerator</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4830, 4831], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4834, 4835, 4836, 4837], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4839, 4840], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["globalaccelerator"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["globalaccelerator"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410316, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4846], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4826, 4827, 4828, 4829, 4832, 4833, 4838, 4841, 4842, 4843, 4844, 4845, 4847, 4848, 4849], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-08-08\nx-release: v4\ntitle: AWS Global Accelerator\ndescription: <fullname>AWS Global Accelerator</fullname> <p>This is the <i>AWS Global Accelerator API Reference</i>. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html">AWS Global Accelerator Developer Guide</a>.</p> <p>AWS Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits. </p> <ul> <li> <p>By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the AWS global network. </p> </li> <li> <p>For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you can use application logic to directly map one or more users to a specific endpoint among many endpoints.</p> </li> </ul> <important> <p>Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.</p> </important> <p>By default, Global Accelerator provides you with two static IP addresses that you associate with your accelerator. With a standard accelerator, instead of using the IP addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator. The static IP addresses are anycast from the AWS edge network. For a standard accelerator, they distribute incoming application traffic across multiple endpoint resources in multiple AWS Regions, which increases the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses that are located in one AWS Region or multiple Regions. For custom routing accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that are virtual private cloud (VPC) subnets.</p> <important> <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p> </important> <p>For standard accelerators, Global Accelerator uses the AWS global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is always directed to healthy endpoints.</p> <p>For a list of the AWS Regions where Global Accelerator and other services are currently supported, see the <a href="https://docs.aws.amazon.com/about-aws/global-infrastructure/regional-product-services/">AWS Region Table</a>.</p> <p>AWS Global Accelerator includes the following components:</p> <dl> <dt>Static IP addresses</dt> <dd> <p>Global Accelerator provides you with a set of two static IP addresses that are anycast from the AWS edge network. If you bring your own IP address range to AWS (BYOIP) to use with a standard accelerator, you can instead assign IP addresses from your own pool to use with your accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html"> Bring your own IP addresses (BYOIP) in AWS Global Accelerator</a>.</p> <p>The IP addresses serve as single fixed entry points for your clients. If you already have Elastic Load Balancing load balancers, Amazon EC2 instances, or Elastic IP address resources set up for your applications, you can easily add those to a standard accelerator in Global Accelerator. This allows Global Accelerator to use static IP addresses to access the resources.</p> <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies like tag-based permissions with Global Accelerator to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p> </dd> <dt>Accelerator</dt> <dd> <p>An accelerator directs traffic to endpoints over the AWS global network to improve the performance of your internet applications. Each accelerator includes one or more listeners.</p> <p>There are two types of accelerators:</p> <ul> <li> <p>A <i>standard</i> accelerator directs traffic to the optimal AWS endpoint based on several factors, including the user’s location, the health of the endpoint, and the endpoint weights that you configure. This improves the availability and performance of your applications. Endpoints can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses.</p> </li> <li> <p>A <i>custom routing</i> accelerator directs traffic to one of possibly thousands of Amazon EC2 instances running in a single or multiple virtual private clouds (VPCs). With custom routing, listener ports are mapped to statically associate port ranges with VPC subnets, which allows Global Accelerator to determine an EC2 instance IP address at the time of connection. By default, all port mapping destinations in a VPC subnet can't receive traffic. You can choose to configure all destinations in the subnet to receive traffic, or to specify individual port mappings that can receive traffic.</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/introduction-accelerator-types.html">Types of accelerators</a>.</p> </dd> <dt>DNS name</dt> <dd> <p>Global Accelerator assigns each accelerator a default Domain Name System (DNS) name, similar to <code>a1234567890abcdef.awsglobalaccelerator.com</code>, that points to the static IP addresses that Global Accelerator assigns to you or that you choose from your own IP address range. Depending on the use case, you can use your accelerator's static IP addresses or DNS name to route traffic to your accelerator, or set up DNS records to route traffic using your own custom domain name.</p> </dd> <dt>Network zone</dt> <dd> <p>A network zone services the static IP addresses for your accelerator from a unique IP subnet. Similar to an AWS Availability Zone, a network zone is an isolated unit with its own set of physical infrastructure. When you configure an accelerator, by default, Global Accelerator allocates two IPv4 addresses for it. If one IP address from a network zone becomes unavailable due to IP address blocking by certain client networks, or network disruptions, then client applications can retry on the healthy static IP address from the other isolated network zone.</p> </dd> <dt>Listener</dt> <dd> <p>A listener processes inbound connections from clients to Global Accelerator, based on the port (or port range) and protocol (or protocols) that you configure. A listener can be configured for TCP, UDP, or both TCP and UDP protocols. Each listener has one or more endpoint groups associated with it, and traffic is forwarded to endpoints in one of the groups. You associate endpoint groups with listeners by specifying the Regions that you want to distribute traffic to. With a standard accelerator, traffic is distributed to optimal endpoints within the endpoint groups associated with a listener.</p> </dd> <dt>Endpoint group</dt> <dd> <p>Each endpoint group is associated with a specific AWS Region. Endpoint groups include one or more endpoints in the Region. With a standard accelerator, you can increase or reduce the percentage of traffic that would be otherwise directed to an endpoint group by adjusting a setting called a <i>traffic dial</i>. The traffic dial lets you easily do performance testing or blue/green deployment testing, for example, for new releases across different AWS Regions. </p> </dd> <dt>Endpoint</dt> <dd> <p>An endpoint is a resource that Global Accelerator directs traffic to.</p> <p>Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers, Amazon EC2 instances, or Elastic IP addresses. An Application Load Balancer endpoint can be internet-facing or internal. Traffic for standard accelerators is routed to endpoints based on the health of the endpoint along with configuration options that you choose, such as endpoint weights. For each endpoint, you can configure weights, which are numbers that you can use to specify the proportion of traffic to route to each one. This can be useful, for example, to do performance testing within a Region.</p> <p>Endpoints for custom routing accelerators are virtual private cloud (VPC) subnets with one or many EC2 instances.</p> </dd> </dl>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: globalaccelerator\nx-aws-signingName: globalaccelerator\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-08-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/globalaccelerator/\">https://docs.aws.amazon.com/globalacc<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4851, 4852], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/globalaccelerator/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-28T08:15:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-08-08: DataRow\">2018-08-08</span>", children: [4825, 4850, 4853, 4854, 4855, 4856, 4857], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-08-08, x-release:v4, title:AWS Global Accelerator, description:<fullname>AWS Global Accelerator</fullname> <p>This is the <i>AWS Global Accelerator API Reference</i>. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html">AWS Global Accelerator Developer Guide</a>.</p> <p>AWS Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits. </p> <ul> <li> <p>By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the AWS global network. </p> </li> <li> <p>For other scenarios, you might choose a custom routing acce..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:globalaccelerator, x-aws-signingName:globalaccelerator, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/globalaccelerator-2018-08-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/globalaccelerator/ }\nupdated: 2020-03-28T08:15:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4858], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-08-08: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-08, x-release:v4, title:AWS Global Accelerator, description:<fullname>AWS Global Accelerator</fullname> <p>This is the <i>AWS Global Accelerator API Reference</i>. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html">AWS Global Accelerator Developer Guide</a>.</p> <p>AWS Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits. </p> <ul> <li> <p>By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the AWS global network. ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/globalaccelerator/ }, updated:2020-03-28T08:15:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/globalaccelerator/2018-08-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-08-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:globalaccelerator: DataRow\">amazonaws.com:globalaccelerator</span>", children: [4823, 4824, 4859], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-08-08\nversions: { 2018-08-08:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-08, x-release:v4, title:AWS Global Accelerator, description:<fullname>AWS Global Accelerator</fullname> <p>This is the <i>AWS Global Accelerator API Reference</i>. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/Welcome.html">AWS Global Accelerator Developer Guide</a>.</p> <p>AWS Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance of your applications for local and global users. Depending on the type of accelerator you choose, you can gain additional benefits. </p> <ul> <li> <p>By using a standard accelerator, you can improve availability of your internet applications that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Glue"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Glue</fullname> <p>Defines the public endpoint for the Glue service.</p>\"><fullname>Glue</fullname> <p>Defines <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4868, 4869], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4872, 4873, 4874, 4875], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4877, 4878], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["glue"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410317, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4883], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4864, 4865, 4866, 4867, 4870, 4871, 4876, 4879, 4880, 4881, 4882, 4884, 4885, 4886], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-03-31\nx-release: v4\ntitle: AWS Glue\ndescription: <fullname>Glue</fullname> <p>Defines the public endpoint for the Glue service.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: glue\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/glue/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4888, 4889], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/glue/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T06:33:24.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-03-31: DataRow\">2017-03-31</span>", children: [4863, 4887, 4890, 4891, 4892, 4893, 4894], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-03-31, x-release:v4, title:AWS Glue, description:<fullname>Glue</fullname> <p>Defines the public endpoint for the Glue service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:glue, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/glue-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/glue/ }\nupdated: 2020-04-21T06:33:24.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4895], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-03-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-31, x-release:v4, title:AWS Glue, description:<fullname>Glue</fullname> <p>Defines the public endpoint for the Glue service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:glue, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/glue-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/glue/ }, updated:2020-04-21T06:33:24.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/glue/2017-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:glue: DataRow\">amazonaws.com:glue</span>", children: [4861, 4862, 4896], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-03-31\nversions: { 2017-03-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-31, x-release:v4, title:AWS Glue, description:<fullname>Glue</fullname> <p>Defines the public endpoint for the Glue service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:glue, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/glue-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categorie... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-06-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-06-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Greengrass"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally.\">AWS IoT Greengrass seamlessly extends<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4905, 4906], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4909, 4910, 4911, 4912], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4914, 4915], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["greengrass"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["greengrass"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410318, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4921], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4901, 4902, 4903, 4904, 4907, 4908, 4913, 4916, 4917, 4918, 4919, 4920, 4922, 4923, 4924], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-06-07\nx-release: v4\ntitle: AWS Greengrass\ndescription: AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: greengrass\nx-aws-signingName: greengrass\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-06-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/greengrass/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4926, 4927], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/greengrass/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-06-07: DataRow\">2017-06-07</span>", children: [4900, 4925, 4928, 4929, 4930, 4931, 4932], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-06-07, x-release:v4, title:AWS Greengrass, description:AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:greengrass, x-aws-signingName:greengrass, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/greengrass-2017-06-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/greengrass/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4933], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-06-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-06-07, x-release:v4, title:AWS Greengrass, description:AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:greengrass, x-aws-signingName:greengrass, x-origi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/greengrass/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/greengrass/2017-06-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-06-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:greengrass: DataRow\">amazonaws.com:greengrass</span>", children: [4898, 4899, 4934], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-06-07\nversions: { 2017-06-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-06-07, x-release:v4, title:AWS Greengrass, description:AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:greengrass... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Greengrass V2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components to create and deploy applications to fleets of edge devices for local operation.</p> <p>IoT Greengrass Version 2 provides a new major version of the IoT Greengrass Core software, new APIs, and a new console. Use this API reference to learn how to use the IoT Greengrass V2 API operations to manage components, manage deployments, and core devices.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/what-is-iot-greengrass.html">What is IoT Greengrass?</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>\"><p>IoT Greengrass brings local comput<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4943, 4944], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4947, 4948, 4949, 4950], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4952, 4953], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["greengrassv2"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410319, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4958], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4939, 4940, 4941, 4942, 4945, 4946, 4951, 4954, 4955, 4956, 4957, 4959, 4960, 4961], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-30\nx-release: v4\ntitle: AWS IoT Greengrass V2\ndescription: <p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components to create and deploy applications to fleets of edge devices for local operation.</p> <p>IoT Greengrass Version 2 provides a new major version of the IoT Greengrass Core software, new APIs, and a new console. Use this API reference to learn how to use the IoT Greengrass V2 API operations to manage components, manage deployments, and core devices.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/what-is-iot-greengrass.html">What is IoT Greengrass?</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: greengrassv2\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/greengrass/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [4963, 4964], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/greengrass/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-30: DataRow\">2020-11-30</span>", children: [4938, 4962, 4965, 4966, 4967, 4968], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-30, x-release:v4, title:AWS IoT Greengrass V2, description:<p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components to create and deploy applications to fleets of edge devices for local operation.</p> <p>IoT Greengrass Version 2 provides a new major version of the IoT Greengrass Core software, new APIs, and a new console. Use this API reference to learn how to use the IoT Greengrass V2 API operations to manage components, manage deployments, and core devices.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/what-is-iot-greengrass.html">What is IoT Greengra..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:greengrassv2, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/greengrassv2-2020-11-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/greengrass/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [4969], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-30: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-30, x-release:v4, title:AWS IoT Greengrass V2, description:<p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components to create and deploy applications to fleets of edge devices for local operation.</p> <p>IoT Greengrass Version 2 provides a new major version of the IoT Greengrass Core software, new APIs, and a new console. Use this API reference to learn how to use the IoT Greengrass V2 API operations to manage components, manage deployments, and core devices.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/g..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/greengrass/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/greengrassv2/2020-11-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:greengrassv2: DataRow\">amazonaws.com:greengrassv2</span>", children: [4936, 4937, 4970], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-30\nversions: { 2020-11-30:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-30, x-release:v4, title:AWS IoT Greengrass V2, description:<p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities to edge devices. This enables devices to collect and analyze data closer to the source of information, react autonomously to local events, and communicate securely with each other on local networks. Local devices can also communicate securely with Amazon Web Services IoT Core and export IoT data to the Amazon Web Services Cloud. IoT Greengrass developers can use Lambda functions and components to create and deploy applications to fleets of edge devices for local operation.</p> <p>IoT Greengrass Version 2 provides a new major version of the IoT Greengrass Core software, new APIs, and a new console. Use this API reference to learn how to use the IoT Greengrass V2 API operations to manage components, manage deployments, and core devices.</p> <p>For more information, see... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-05-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-05-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Ground Station"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure.\">Welcome to the AWS Ground Station API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [4979, 4980], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [4983, 4984, 4985, 4986], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [4988, 4989], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["groundstation"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["groundstation"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410320, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [4995], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [4975, 4976, 4977, 4978, 4981, 4982, 4987, 4990, 4991, 4992, 4993, 4994, 4996, 4997, 4998], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-05-23\nx-release: v4\ntitle: AWS Ground Station\ndescription: Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: groundstation\nx-aws-signingName: groundstation\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-05-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/groundstation/\">https://docs.aws.amazon.com/groundsta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5000, 5001], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/groundstation/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-05-23: DataRow\">2019-05-23</span>", children: [4974, 4999, 5002, 5003, 5004, 5005, 5006], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-05-23, x-release:v4, title:AWS Ground Station, description:Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:groundstation, x-aws-signingName:groundstation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/groundstation-2019-05-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/groundstation/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5007], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-05-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-05-23, x-release:v4, title:AWS Ground Station, description:Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:groundstation, x-aws-signingName:groundstation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ground..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/groundstation/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/groundstation/2019-05-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-05-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:groundstation: DataRow\">amazonaws.com:groundstation</span>", children: [4972, 4973, 5008], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-05-23\nversions: { 2019-05-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-05-23, x-release:v4, title:AWS Ground Station, description:Welcome to the AWS Ground Station API Reference. AWS Ground Station is a fully managed service that enables you to control satellite communications, downlink and process satellite data, and scale your satellite operations efficiently and cost-effectively without having to build or manage your own ground station infrastructure., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:groundstation, x-aws-signingName:groundstation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubuserconten... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon GuardDuty"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following data sources: VPC Flow Logs, AWS CloudTrail event logs, and DNS logs. It uses threat intelligence feeds (such as lists of malicious IPs and domains) and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your AWS environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, URLs, or domains. For example, GuardDuty can detect compromised EC2 instances that serve malware or mine bitcoin. </p> <p>GuardDuty also monitors AWS account access behavior for signs of compromise. Some examples of this are unauthorized infrastructure deployments such as EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change to reduce password strength. </p> <p>GuardDuty informs you of the status of your AWS environment by producing security findings that you can view in the GuardDuty console or through Amazon CloudWatch events. For more information, see the <i> <a href="https://docs.aws.amazon.com/guardduty/latest/ug/what-is-guardduty.html">Amazon GuardDuty User Guide</a> </i>. </p>\"><p>Amazon GuardDuty is a continuous s<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5017, 5018], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5021, 5022, 5023, 5024], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5026, 5027], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["guardduty"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["guardduty"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410321, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5033], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5013, 5014, 5015, 5016, 5019, 5020, 5025, 5028, 5029, 5030, 5031, 5032, 5034, 5035, 5036], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-28\nx-release: v4\ntitle: Amazon GuardDuty\ndescription: <p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following data sources: VPC Flow Logs, AWS CloudTrail event logs, and DNS logs. It uses threat intelligence feeds (such as lists of malicious IPs and domains) and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your AWS environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, URLs, or domains. For example, GuardDuty can detect compromised EC2 instances that serve malware or mine bitcoin. </p> <p>GuardDuty also monitors AWS account access behavior for signs of compromise. Some examples of this are unauthorized infrastructure deployments such as EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change to reduce password strength. </p> <p>GuardDuty informs you of the status of your AWS environment by producing security findings that you can view in the GuardDuty console or through Amazon CloudWatch events. For more information, see the <i> <a href="https://docs.aws.amazon.com/guardduty/latest/ug/what-is-guardduty.html">Amazon GuardDuty User Guide</a> </i>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: guardduty\nx-aws-signingName: guardduty\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/guardduty/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5038, 5039], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/guardduty/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-09T06:36:06.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-28: DataRow\">2017-11-28</span>", children: [5012, 5037, 5040, 5041, 5042, 5043, 5044], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-28, x-release:v4, title:Amazon GuardDuty, description:<p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following data sources: VPC Flow Logs, AWS CloudTrail event logs, and DNS logs. It uses threat intelligence feeds (such as lists of malicious IPs and domains) and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your AWS environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, URLs, or domains. For example, GuardDuty can detect compromised EC2 instances that serve malware or mine bitcoin. </p> <p>GuardDuty also monitors AWS account access behavior for signs of compromise. Some examples of this are unauthorized infrastructure deployments such as EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change to reduce password strength. </p> <p>GuardDuty informs you of the status of your AWS environment by producing se..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:guardduty, x-aws-signingName:guardduty, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/guardduty-2017-11-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/guardduty/ }\nupdated: 2020-05-09T06:36:06.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5045], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-28, x-release:v4, title:Amazon GuardDuty, description:<p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following data sources: VPC Flow Logs, AWS CloudTrail event logs, and DNS logs. It uses threat intelligence feeds (such as lists of malicious IPs and domains) and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your AWS environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, URLs, or domains. For example, GuardDuty can detect compromised EC2 instances that serve malware or mine bitcoin. </p> <p>GuardDuty also monitors AWS account access behavior for signs of compromise. Some examples of this are unauthorized infrastructure deployments such as EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change to reduce password strength. </p> <p>Gua..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/guardduty/ }, updated:2020-05-09T06:36:06.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/guardduty/2017-11-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:guardduty: DataRow\">amazonaws.com:guardduty</span>", children: [5010, 5011, 5046], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-28\nversions: { 2017-11-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-28, x-release:v4, title:Amazon GuardDuty, description:<p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following data sources: VPC Flow Logs, AWS CloudTrail event logs, and DNS logs. It uses threat intelligence feeds (such as lists of malicious IPs and domains) and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your AWS environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, URLs, or domains. For example, GuardDuty can detect compromised EC2 instances that serve malware or mine bitcoin. </p> <p>GuardDuty also monitors AWS account access behavior for signs of compromise. Some examples of this are unauthorized infrastructure deployments such as EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change t... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-08-04"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-08-04"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Health APIs and Notifications"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Health</fullname> <p>The AWS Health API provides programmatic access to the AWS Health information that appears in the <a href="https://phd.aws.amazon.com/phd/home#/">AWS Personal Health Dashboard</a>. You can use the API operations to get information about AWS Health events that affect your AWS services and resources.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan from <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a> to use the AWS Health API. If you call the AWS Health API from an AWS account that doesn't have a Business or Enterprise Support plan, you receive a <code>SubscriptionRequiredException</code> error.</p> </li> <li> <p>You can use the AWS Health endpoint health.us-east-1.amazonaws.com (HTTPS) to call the AWS Health API operations. AWS Health supports a multi-Region application architecture and has two regional endpoints in an active-passive configuration. You can use the high availability endpoint example to determine which AWS Region is active, so that you can get the latest information from the API. For more information, see <a href="https://docs.aws.amazon.com/health/latest/ug/health-api.html">Accessing the AWS Health API</a> in the <i>AWS Health User Guide</i>.</p> </li> </ul> </note> <p>For authentication of requests, AWS Health uses the <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>.</p> <p>If your AWS account is part of AWS Organizations, you can use the AWS Health organizational view feature. This feature provides a centralized view of AWS Health events across all accounts in your organization. You can aggregate AWS Health events in real time to identify accounts in your organization that are affected by an operational event or get notified of security vulnerabilities. Use the organizational view API operations to enable this feature and return event information. For more information, see <a href="https://docs.aws.amazon.com/health/latest/ug/aggregate-events.html">Aggregating AWS Health events</a> in the <i>AWS Health User Guide</i>.</p> <note> <p>When you use the AWS Health API operations to return AWS Health events, see the following recommendations:</p> <ul> <li> <p>Use the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html#AWSHealth-Type-Event-eventScopeCode">eventScopeCode</a> parameter to specify whether to return AWS Health events that are public or account-specific.</p> </li> <li> <p>Use pagination to view all events from the response. For example, if you call the <code>DescribeEventsForOrganization</code> operation to get all events in your organization, you might receive several page results. Specify the <code>nextToken</code> in the next request to return more results.</p> </li> </ul> </note>\"><fullname>AWS Health</fullname> <p>Th<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5055, 5056], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5059, 5060, 5061, 5062], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5064, 5065], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["health"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410322, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5070], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5051, 5052, 5053, 5054, 5057, 5058, 5063, 5066, 5067, 5068, 5069, 5071, 5072, 5073], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-08-04\nx-release: v4\ntitle: AWS Health APIs and Notifications\ndescription: <fullname>AWS Health</fullname> <p>The AWS Health API provides programmatic access to the AWS Health information that appears in the <a href="https://phd.aws.amazon.com/phd/home#/">AWS Personal Health Dashboard</a>. You can use the API operations to get information about AWS Health events that affect your AWS services and resources.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan from <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a> to use the AWS Health API. If you call the AWS Health API from an AWS account that doesn't have a Business or Enterprise Support plan, you receive a <code>SubscriptionRequiredException</code> error.</p> </li> <li> <p>You can use the AWS Health endpoint health.us-east-1.amazonaws.com (HTTPS) to call the AWS Health API operations. AWS Health supports a multi-Region application architecture and has two regional endpoints in an active-passive configuration. You can use the high availability endpoint example to determine which AWS Region is active, so that you can get the latest information from the API. For more information, see <a href="https://docs.aws.amazon.com/health/latest/ug/health-api.html">Accessing the AWS Health API</a> in the <i>AWS Health User Guide</i>.</p> </li> </ul> </note> <p>For authentication of requests, AWS Health uses the <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>.</p> <p>If your AWS account is part of AWS Organizations, you can use the AWS Health organizational view feature. This feature provides a centralized view of AWS Health events across all accounts in your organization. You can aggregate AWS Health events in real time to identify accounts in your organization that are affected by an operational event or get notified of security vulnerabilities. Use the organizational view API operations to enable this feature and return event information. For more information, see <a href="https://docs.aws.amazon.com/health/latest/ug/aggregate-events.html">Aggregating AWS Health events</a> in the <i>AWS Health User Guide</i>.</p> <note> <p>When you use the AWS Health API operations to return AWS Health events, see the following recommendations:</p> <ul> <li> <p>Use the <a href="https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html#AWSHealth-Type-Event-eventScopeCode">eventScopeCode</a> parameter to specify whether to return AWS Health events that are public or account-specific.</p> </li> <li> <p>Use pagination to view all events from the response. For example, if you call the <code>DescribeEventsForOrganization</code> operation to get all events in your organization, you might receive several page results. Specify the <code>nextToken</code> in the next request to return more results.</p> </li> </ul> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: health\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-08-04<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/health/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5075, 5076], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/health/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-08-04: DataRow\">2016-08-04</span>", children: [5050, 5074, 5077, 5078, 5079, 5080, 5081], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-08-04, x-release:v4, title:AWS Health APIs and Notifications, description:<fullname>AWS Health</fullname> <p>The AWS Health API provides programmatic access to the AWS Health information that appears in the <a href="https://phd.aws.amazon.com/phd/home#/">AWS Personal Health Dashboard</a>. You can use the API operations to get information about AWS Health events that affect your AWS services and resources.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan from <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a> to use the AWS Health API. If you call the AWS Health API from an AWS account that doesn't have a Business or Enterprise Support plan, you receive a <code>SubscriptionRequiredException</code> error.</p> </li> <li> <p>You can use the AWS Health endpoint health.us-east-1.amazonaws.com (HTTPS) to call the AWS Health API operations. AWS Health supports a multi-Region application architecture and has two regional endpoints in an active-passive configuration. You can use the high availability endpoint example to deter..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:health, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/health-2016-08-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/health/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5082], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-08-04: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-08-04, x-release:v4, title:AWS Health APIs and Notifications, description:<fullname>AWS Health</fullname> <p>The AWS Health API provides programmatic access to the AWS Health information that appears in the <a href="https://phd.aws.amazon.com/phd/home#/">AWS Personal Health Dashboard</a>. You can use the API operations to get information about AWS Health events that affect your AWS services and resources.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan from <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a> to use the AWS Health API. If you call the AWS Health API from an AWS account that doesn't have a Business or Enterprise Support plan, you receive a <code>SubscriptionRequiredException</code> error.</p> </li> <li> <p>You can use the AWS Health endpoint health.us-east-1.amazonaws.com (HTTPS) to call the AWS Health API operations. AWS Health supports a multi-Region application architecture and has two regional endpoints in an ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/health/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/health/2016-08-04/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-08-04: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:health: DataRow\">amazonaws.com:health</span>", children: [5048, 5049, 5083], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-08-04\nversions: { 2016-08-04:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-08-04, x-release:v4, title:AWS Health APIs and Notifications, description:<fullname>AWS Health</fullname> <p>The AWS Health API provides programmatic access to the AWS Health information that appears in the <a href="https://phd.aws.amazon.com/phd/home#/">AWS Personal Health Dashboard</a>. You can use the API operations to get information about AWS Health events that affect your AWS services and resources.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan from <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a> to use the AWS Health API. If you call the AWS Health API from an AWS account that doesn't have a Business or Enterprise Support plan, you receive a <code>SubscriptionRequiredException</code> error.</p> </li> <li> <p>You can use the AWS Health endpoint health.us-east-1.amazonaws.com (HTTPS) to call the AWS Health API operations. AWS Health supports a multi-Region application architectur... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon HealthLake"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud.\">Amazon HealthLake is a HIPAA eligibil<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5092, 5093], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5096, 5097, 5098, 5099], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5101, 5102], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["healthlake"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["healthlake"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410323, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5108], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5088, 5089, 5090, 5091, 5094, 5095, 5100, 5103, 5104, 5105, 5106, 5107, 5109, 5110, 5111], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-01\nx-release: v4\ntitle: Amazon HealthLake\ndescription: Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: healthlake\nx-aws-signingName: healthlake\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/healthlake/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5113, 5114], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/healthlake/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-01: DataRow\">2017-07-01</span>", children: [5087, 5112, 5115, 5116, 5117, 5118], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2017-07-01, x-release:v4, title:Amazon HealthLake, description:Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:healthlake, x-aws-signingName:healthlake, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/healthlake-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/healthlake/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5119], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-01, x-release:v4, title:Amazon HealthLake, description:Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:healthlake, x-aws-signingName:healthlake, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/healthlake-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:h..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/healthlake/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/healthlake/2017-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:healthlake: DataRow\">amazonaws.com:healthlake</span>", children: [5085, 5086, 5120], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2017-07-01\nversions: { 2017-07-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-01, x-release:v4, title:Amazon HealthLake, description:Amazon HealthLake is a HIPAA eligibile service that allows customers to store, transform, query, and analyze their FHIR-formatted data in a consistent fashion in the cloud., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:healthlake, x-aws-signingName:healthlake, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/healthlake-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:exte... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-03-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-03-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Honeycode"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" Amazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. \"> Amazon Honeycode is a fully managed <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5129, 5130], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5133, 5134, 5135, 5136], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5138, 5139], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["honeycode"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["honeycode"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410324, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5145], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5125, 5126, 5127, 5128, 5131, 5132, 5137, 5140, 5141, 5142, 5143, 5144, 5146, 5147, 5148], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-03-01\nx-release: v4\ntitle: Amazon Honeycode\ndescription: Amazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: honeycode\nx-aws-signingName: honeycode\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-03-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/honeycode/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5150, 5151], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/honeycode/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-03-01: DataRow\">2020-03-01</span>", children: [5124, 5149, 5152, 5153, 5154, 5155], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\ninfo: { version:2020-03-01, x-release:v4, title:Amazon Honeycode, description: Amazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:honeycode, x-aws-signingName:honeycode, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/honeycode-2020-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/honeycode/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5156], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-03-01: { added:2020-07-10T08:57:08.681Z, info:{ version:2020-03-01, x-release:v4, title:Amazon Honeycode, description: Amazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:honeycode, x-aws-signingName:honeycode, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/honeycode-2020-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2ope..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/honeycode/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/honeycode/2020-03-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-03-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:honeycode: DataRow\">amazonaws.com:honeycode</span>", children: [5122, 5123, 5157], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\npreferred: 2020-03-01\nversions: { 2020-03-01:{ added:2020-07-10T08:57:08.681Z, info:{ version:2020-03-01, x-release:v4, title:Amazon Honeycode, description: Amazon Honeycode is a fully managed service that allows you to quickly build mobile and web apps for teams—without programming. Build Honeycode apps for managing almost anything, like projects, customers, operations, approvals, resources, and even your team. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:honeycode, x-aws-signingName:honeycode, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/honeycode-2020-03-01.normal.json, converter:{... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-05-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-05-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Identity and Access Management"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Identity and Access Management</fullname> <p>Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials such as access keys, and permissions that control which Amazon Web Services resources users and applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>\"><fullname>Identity and Access Managem<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5166, 5167], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5170, 5171, 5172, 5173], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5175, 5176], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iam"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410325, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5181], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5162, 5163, 5164, 5165, 5168, 5169, 5174, 5177, 5178, 5179, 5180, 5182, 5183, 5184], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-05-08\nx-release: v4\ntitle: AWS Identity and Access Management\ndescription: <fullname>Identity and Access Management</fullname> <p>Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials such as access keys, and permissions that control which Amazon Web Services resources users and applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iam\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-05-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iam/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5186, 5187], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iam/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-07T06:35:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-05-08: DataRow\">2010-05-08</span>", children: [5161, 5185, 5188, 5189, 5190, 5191, 5192], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2010-05-08, x-release:v4, title:AWS Identity and Access Management, description:<fullname>Identity and Access Management</fullname> <p>Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials such as access keys, and permissions that control which Amazon Web Services resources users and applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iam, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iam-2010-05-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iam/ }\nupdated: 2020-04-07T06:35:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5193], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-05-08: { added:2017-05-02T07:59:53.000Z, info:{ version:2010-05-08, x-release:v4, title:AWS Identity and Access Management, description:<fullname>Identity and Access Management</fullname> <p>Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials such as access keys, and permissions that control which Amazon Web Services resources users and applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iam/ }, updated:2020-04-07T06:35:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iam/2010-05-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-05-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iam: DataRow\">amazonaws.com:iam</span>", children: [5159, 5160, 5194], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2010-05-08\nversions: { 2010-05-08:{ added:2017-05-02T07:59:53.000Z, info:{ version:2010-05-08, x-release:v4, title:AWS Identity and Access Management, description:<fullname>Identity and Access Management</fullname> <p>Identity and Access Management (IAM) is a web service for securely controlling access to Amazon Web Services services. With IAM, you can centrally manage users, security credentials such as access keys, and permissions that control which Amazon Web Services resources users and applications can access. For more information about IAM, see <a href="http://aws.amazon.com/iam/">Identity and Access Management (IAM)</a> and the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/">Identity and Access Management User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2open... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-06-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-06-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS SSO Identity Store"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User Guide</a>.\">The AWS Single Sign-On (SSO) Identity<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5203, 5204], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5207, 5208, 5209, 5210], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5212, 5213], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["identitystore"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["identitystore"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410326, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5219], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5199, 5200, 5201, 5202, 5205, 5206, 5211, 5214, 5215, 5216, 5217, 5218, 5220, 5221, 5222], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-06-15\nx-release: v4\ntitle: AWS SSO Identity Store\ndescription: The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: identitystore\nx-aws-signingName: identitystore\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-06-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/identitystore/\">https://docs.aws.amazon.com/identitys<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5224, 5225], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/identitystore/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-06-15: DataRow\">2020-06-15</span>", children: [5198, 5223, 5226, 5227, 5228, 5229], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-06-15, x-release:v4, title:AWS SSO Identity Store, description:The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:identitystore, x-aws-signingName:identitystore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/identitystore-2020-06-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/identitystore/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5230], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-06-15: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-06-15, x-release:v4, title:AWS SSO Identity Store, description:The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:identitystore, x-aws-signingName:identitystore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/identitystore-2020-06-15.normal.json, conver..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/identitystore/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/identitystore/2020-06-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-06-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:identitystore: DataRow\">amazonaws.com:identitystore</span>", children: [5196, 5197, 5231], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-06-15\nversions: { 2020-06-15:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-06-15, x-release:v4, title:AWS SSO Identity Store, description:The AWS Single Sign-On (SSO) Identity Store service provides a single place to retrieve all of your identities (users and groups). For more information about AWS, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">AWS Single Sign-On User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:identitystore, x-aws-signingName:identitystore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ident... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["EC2 Image Builder"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date "golden" server images that are pre-installed and pre-configured with software and settings to meet specific IT standards.\">EC2 Image Builder is a fully managed <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5240, 5241], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5244, 5245, 5246, 5247], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5249, 5250], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["imagebuilder"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["imagebuilder"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410327, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5256], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5236, 5237, 5238, 5239, 5242, 5243, 5248, 5251, 5252, 5253, 5254, 5255, 5257, 5258, 5259], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-02\nx-release: v4\ntitle: EC2 Image Builder\ndescription: EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date "golden" server images that are pre-installed and pre-configured with software and settings to meet specific IT standards.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: imagebuilder\nx-aws-signingName: imagebuilder\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/imagebuilder/\">https://docs.aws.amazon.com/imagebuil<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5261, 5262], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/imagebuilder/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-02: DataRow\">2019-12-02</span>", children: [5235, 5260, 5263, 5264, 5265, 5266, 5267], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-12-02, x-release:v4, title:EC2 Image Builder, description:EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date "golden" server images that are pre-installed and pre-configured with software and settings to meet specific IT standards., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:imagebuilder, x-aws-signingName:imagebuilder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/imagebuilder-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/imagebuilder/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5268], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-02, x-release:v4, title:EC2 Image Builder, description:EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date "golden" server images that are pre-installed and pre-configured with software and settings to meet specific IT standards., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:imagebuilder, x-aws-signingName:imagebuilder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/imagebuilder-2019-12-02.normal.json, c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/imagebuilder/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/imagebuilder/2019-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:imagebuilder: DataRow\">amazonaws.com:imagebuilder</span>", children: [5233, 5234, 5269], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-12-02\nversions: { 2019-12-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-02, x-release:v4, title:EC2 Image Builder, description:EC2 Image Builder is a fully managed Amazon Web Services service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date "golden" server images that are pre-installed and pre-configured with software and settings to meet specific IT standards., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:imagebuilder, x-aws-signingName:imagebuilder, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-06-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-06-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v2"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Import/Export"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity.\"><fullname>AWS Import/Export Service</<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5278, 5279], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5282, 5283, 5284, 5285], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5287, 5288], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["importexport"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410328, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5293], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5274, 5275, 5276, 5277, 5280, 5281, 5286, 5289, 5290, 5291, 5292, 5294, 5295, 5296], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-06-01\nx-release: v2\ntitle: AWS Import/Export\ndescription: <fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: importexport\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-06-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/importexport/\">https://docs.aws.amazon.com/importexp<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5298, 5299], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/importexport/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-06-01: DataRow\">2010-06-01</span>", children: [5273, 5297, 5300, 5301, 5302, 5303, 5304], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2010-06-01, x-release:v2, title:AWS Import/Export, description:<fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:importexport, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/importexport-2010-06-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/importexport/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5305], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-06-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2010-06-01, x-release:v2, title:AWS Import/Export, description:<fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:importexport, x-origin:[1 x ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/importexport/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/importexport/2010-06-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-06-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:importexport: DataRow\">amazonaws.com:importexport</span>", children: [5271, 5272, 5306], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2010-06-01\nversions: { 2010-06-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2010-06-01, x-release:v2, title:AWS Import/Export, description:<fullname>AWS Import/Export Service</fullname> AWS Import/Export accelerates transferring large amounts of data between the AWS cloud and portable storage devices that you mail to us. AWS Import/Export transfers data directly onto and off of your storage devices using Amazon's high-speed internal network and bypassing the Internet. For large data sets, AWS Import/Export is often faster than Internet transfer and more cost effective than upgrading your connectivity., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-s... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-02-16"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-02-16"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Inspector"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Inspector</fullname> <p>Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html"> Amazon Inspector User Guide</a>.</p>\"><fullname>Amazon Inspector</fullname><span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5315, 5316], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5319, 5320, 5321, 5322], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5324, 5325], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["inspector"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410329, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5330], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5311, 5312, 5313, 5314, 5317, 5318, 5323, 5326, 5327, 5328, 5329, 5331, 5332, 5333], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-02-16\nx-release: v4\ntitle: Amazon Inspector\ndescription: <fullname>Amazon Inspector</fullname> <p>Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html"> Amazon Inspector User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: inspector\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-02-16<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/inspector/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5335, 5336], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/inspector/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-02-16: DataRow\">2016-02-16</span>", children: [5310, 5334, 5337, 5338, 5339, 5340, 5341], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-02-16, x-release:v4, title:Amazon Inspector, description:<fullname>Amazon Inspector</fullname> <p>Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html"> Amazon Inspector User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:inspector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/inspector-2016-02-16.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/inspector/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5342], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-02-16: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-02-16, x-release:v4, title:Amazon Inspector, description:<fullname>Amazon Inspector</fullname> <p>Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html"> Amazon Inspector User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:inspector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/inspector-2016-02-16.normal.json, converter:{ url:https://..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/inspector/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/inspector/2016-02-16/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-02-16: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:inspector: DataRow\">amazonaws.com:inspector</span>", children: [5308, 5309, 5343], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-02-16\nversions: { 2016-02-16:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-02-16, x-release:v4, title:Amazon Inspector, description:<fullname>Amazon Inspector</fullname> <p>Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <a href="https://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html"> Amazon Inspector User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:inspector, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/inspector-2016-02-1... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>IoT</fullname> <p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web Services Signature Version 4</a> to sign the request is: <i>execute-api</i>.</p> <p>For more information about how IoT works, see the <a href="https://docs.aws.amazon.com/iot/latest/developerguide/aws-iot-how-it-works.html">Developer Guide</a>.</p> <p>For information about how to use the credentials provider for IoT, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html">Authorizing Direct Calls to Amazon Web Services Services</a>.</p>\"><fullname>IoT</fullname> <p>IoT provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5352, 5353], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5356, 5357, 5358, 5359], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5361, 5362], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iot"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["execute-api"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410330, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5368], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5348, 5349, 5350, 5351, 5354, 5355, 5360, 5363, 5364, 5365, 5366, 5367, 5369, 5370, 5371], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-05-28\nx-release: v4\ntitle: AWS IoT\ndescription: <fullname>IoT</fullname> <p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web Services Signature Version 4</a> to sign the request is: <i>execute-api</i>.</p> <p>For more information about how IoT works, see the <a href="https://docs.aws.amazon.com/iot/latest/developerguide/aws-iot-how-it-works.html">Developer Guide</a>.</p> <p>For information about how to use the credentials provider for IoT, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html">Authorizing Direct Calls to Amazon Web Services Services</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iot\nx-aws-signingName: execute-api\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-05-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5373, 5374], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-05-28: DataRow\">2015-05-28</span>", children: [5347, 5372, 5375, 5376, 5377, 5378, 5379], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-05-28, x-release:v4, title:AWS IoT, description:<fullname>IoT</fullname> <p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web Services Signature Version 4</a> to sign the request is: <i>execute-api</i>.</p> <p>For more ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot, x-aws-signingName:execute-api, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot-2015-05-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5380], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-05-28, x-release:v4, title:AWS IoT, description:<fullname>IoT</fullname> <p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web Services Signature Version 4</..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot/2015-05-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iot: DataRow\">amazonaws.com:iot</span>", children: [5345, 5346, 5381], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-05-28\nversions: { 2015-05-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-05-28, x-release:v4, title:AWS IoT, description:<fullname>IoT</fullname> <p>IoT provides secure, bi-directional communication between Internet-connected devices (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. You can discover your custom IoT-Data endpoint to communicate with, configure rules for data processing and integration with other services, organize resources associated with each device (Registry), configure logging, and create and manage policies and credentials to authenticate devices.</p> <p>The service endpoints that expose this API are listed in <a href="https://docs.aws.amazon.com/general/latest/gr/iot-core.html">Amazon Web Services IoT Core Endpoints and Quotas</a>. You must use the endpoint for the region that has the resources you want to access.</p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Am... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Data Plane"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a persistent representation of your things and their state in the Amazon Web Services cloud.</p> <p>Find the endpoint address for actions in IoT data by running this CLI command:</p> <p> <code>aws iot describe-endpoint --endpoint-type iot:Data-ATS</code> </p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web ServicesSignature Version 4</a> to sign requests is: <i>iotdevicegateway</i>.</p>\"><fullname>IoT data</fullname> <p>IoT <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5390, 5391], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5394, 5395, 5396, 5397], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5399, 5400], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iot-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotdata"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410331, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5406], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5386, 5387, 5388, 5389, 5392, 5393, 5398, 5401, 5402, 5403, 5404, 5405, 5407, 5408, 5409], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-05-28\nx-release: v4\ntitle: AWS IoT Data Plane\ndescription: <fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a persistent representation of your things and their state in the Amazon Web Services cloud.</p> <p>Find the endpoint address for actions in IoT data by running this CLI command:</p> <p> <code>aws iot describe-endpoint --endpoint-type iot:Data-ATS</code> </p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web ServicesSignature Version 4</a> to sign requests is: <i>iotdevicegateway</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iot-data\nx-aws-signingName: iotdata\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-05-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5411, 5412], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-05-28: DataRow\">2015-05-28</span>", children: [5385, 5410, 5413, 5414, 5415, 5416, 5417], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-05-28, x-release:v4, title:AWS IoT Data Plane, description:<fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a persistent representation of your things and their state in the Amazon Web Services cloud.</p> <p>Find the endpoint address for actions in IoT data by running this CLI command:</p> <p> <code>aws iot describe-endpoint --endpoint-type iot:Data-ATS</code> </p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web ServicesSignature Version 4</a> to sign requests is: <i>iotdevicegateway</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot-data, x-aws-signingName:iotdata, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot-data-2015-05-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5418], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-05-28, x-release:v4, title:AWS IoT Data Plane, description:<fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a persistent representation of your things and their state in the Amazon Web Services cloud.</p> <p>Find the endpoint address for actions in IoT data by running this CLI command:</p> <p> <code>aws iot describe-endpoint --endpoint-type iot:Data-ATS</code> </p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web ServicesSignature Version 4</a> to sign requests is: <i>iotdevicegateway</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.p..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot-data/2015-05-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iot-data: DataRow\">amazonaws.com:iot-data</span>", children: [5383, 5384, 5419], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-05-28\nversions: { 2015-05-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-05-28, x-release:v4, title:AWS IoT Data Plane, description:<fullname>IoT data</fullname> <p>IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a persistent representation of your things and their state in the Amazon Web Services cloud.</p> <p>Find the endpoint address for actions in IoT data by running this CLI command:</p> <p> <code>aws iot describe-endpoint --endpoint-type iot:Data-ATS</code> </p> <p>The service name used by <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Amazon Web ServicesSignature Version 4</a> to sign requests is: <i>iotdevicegateway</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/htt... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Jobs Data Plane"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations.</p> <p> To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list of targets that should perform the operations. The targets can be individual things, thing groups or both.</p> <p> AWS IoT Jobs sends a message to inform the targets that a job is available. The target starts the execution of the job by downloading the job document, performing the operations it specifies, and reporting its progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a specific target and for all the targets of the job</p>\"><p>AWS IoT Jobs is a service that all<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5428, 5429], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5432, 5433, 5434, 5435], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5437, 5438], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iot-jobs-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iot-jobs-data"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410332, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5444], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5424, 5425, 5426, 5427, 5430, 5431, 5436, 5439, 5440, 5441, 5442, 5443, 5445, 5446, 5447], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-29\nx-release: v4\ntitle: AWS IoT Jobs Data Plane\ndescription: <p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations.</p> <p> To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list of targets that should perform the operations. The targets can be individual things, thing groups or both.</p> <p> AWS IoT Jobs sends a message to inform the targets that a job is available. The target starts the execution of the job by downloading the job document, performing the operations it specifies, and reporting its progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a specific target and for all the targets of the job</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iot-jobs-data\nx-aws-signingName: iot-jobs-data\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5449, 5450], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-29: DataRow\">2017-09-29</span>", children: [5423, 5448, 5451, 5452, 5453, 5454, 5455], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-29, x-release:v4, title:AWS IoT Jobs Data Plane, description:<p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations.</p> <p> To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list of targets that should perform the operations. The targets can be individual things, thing groups or both.</p> <p> AWS IoT Jobs sends a message to inform the targets that a job is available. The target starts the execution of the job by downloading the job document, performing the operations it specifies, and reporting its progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a specific target and for all the targets of the job</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot-jobs-data, x-aws-signingName:iot-jobs-data, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot-jobs-data-2017-09-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5456], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-29, x-release:v4, title:AWS IoT Jobs Data Plane, description:<p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations.</p> <p> To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list of targets that should perform the operations. The targets can be individual things, thing groups or both.</p> <p> AWS IoT Jobs sends a message to inform the targets that a job is available. The target starts the execution of the job by downloading the job document, performing the operations it specifies, and reporting its progress to AWS IoT. The Jobs service provides commands to track the progress of a job on a sp..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot-jobs-data/2017-09-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iot-jobs-data: DataRow\">amazonaws.com:iot-jobs-data</span>", children: [5421, 5422, 5457], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-29\nversions: { 2017-09-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-29, x-release:v4, title:AWS IoT Jobs Data Plane, description:<p>AWS IoT Jobs is a service that allows you to define a set of jobs — remote operations that are sent to and executed on one or more devices connected to AWS IoT. For example, you can define a job that instructs a set of devices to download and install application or firmware updates, reboot, rotate certificates, or perform remote troubleshooting operations.</p> <p> To create a job, you make a job document which is a description of the remote operations to be performed, and you specify a list of targets that should perform the operations. The targets can be individual things, thing groups or both.</p> <p> AWS IoT Jobs sends a message to inform the targets that a job is available. The target starts the execution of the job by downloading the job document, performing the operations it specifies, and reporting its progress to AWS IoT. The Jobs service provides commands... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT 1-Click Devices Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols.\">Describes all of the AWS IoT 1-Click <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5466, 5467], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5470, 5471, 5472, 5473], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5475, 5476], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iot1click-devices"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iot1click"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410333, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5482], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5462, 5463, 5464, 5465, 5468, 5469, 5474, 5477, 5478, 5479, 5480, 5481, 5483, 5484, 5485], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-14\nx-release: v4\ntitle: AWS IoT 1-Click Devices Service\ndescription: Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iot1click-devices\nx-aws-signingName: iot1click\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot1click/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5487, 5488], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot1click/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-14: DataRow\">2018-05-14</span>", children: [5461, 5486, 5489, 5490, 5491, 5492, 5493], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Devices Service, description:Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-devices, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-devices-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot1click/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5494], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Devices Service, description:Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-devices, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-devices-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:extern..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot1click/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot1click-devices/2018-05-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iot1click-devices: DataRow\">amazonaws.com:iot1click-devices</span>", children: [5459, 5460, 5495], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-14\nversions: { 2018-05-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Devices Service, description:Describes all of the AWS IoT 1-Click device-related API operations for the service.\n Also provides sample requests, responses, and errors for the supported web services\n protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-devices, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-devices-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, ve... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT 1-Click Projects Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The AWS IoT 1-Click Projects API Reference\">The AWS IoT 1-Click Projects API Refe<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5504, 5505], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5508, 5509, 5510, 5511], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5513, 5514], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iot1click-projects"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iot1click"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410334, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5520], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5500, 5501, 5502, 5503, 5506, 5507, 5512, 5515, 5516, 5517, 5518, 5519, 5521, 5522, 5523], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-14\nx-release: v4\ntitle: AWS IoT 1-Click Projects Service\ndescription: The AWS IoT 1-Click Projects API Reference\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iot1click-projects\nx-aws-signingName: iot1click\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot1click/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5525, 5526], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot1click/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-14: DataRow\">2018-05-14</span>", children: [5499, 5524, 5527, 5528, 5529, 5530, 5531], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Projects Service, description:The AWS IoT 1-Click Projects API Reference, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-projects, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-projects-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot1click/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5532], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Projects Service, description:The AWS IoT 1-Click Projects API Reference, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-projects, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-projects-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categor..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot1click/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iot1click-projects/2018-05-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iot1click-projects: DataRow\">amazonaws.com:iot1click-projects</span>", children: [5497, 5498, 5533], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-14\nversions: { 2018-05-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-14, x-release:v4, title:AWS IoT 1-Click Projects Service, description:The AWS IoT 1-Click Projects API Reference, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iot1click-projects, x-aws-signingName:iot1click, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iot1click-projects-2018-05-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/in... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Analytics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set up the service to collect only the data you need from your devices, apply mathematical transforms to process the data, and enrich the data with device-specific metadata such as device type and location before storing it. Then, you can analyze your data by running queries using the built-in SQL query engine, or perform more complex analytics and machine learning inference. IoT Analytics includes pre-built models for common IoT use cases so you can answer questions like which devices are about to fail or which customers are at risk of abandoning their wearable devices.</p>\"><p>IoT Analytics allows you to collec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5542, 5543], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5546, 5547, 5548, 5549], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5551, 5552], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotanalytics"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotanalytics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410335, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5558], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5538, 5539, 5540, 5541, 5544, 5545, 5550, 5553, 5554, 5555, 5556, 5557, 5559, 5560, 5561], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-27\nx-release: v4\ntitle: AWS IoT Analytics\ndescription: <p>IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set up the service to collect only the data you need from your devices, apply mathematical transforms to process the data, and enrich the data with device-specific metadata such as device type and location before storing it. Then, you can analyze your data by running queries using the built-in SQL query engine, or perform more complex analytics and machine learning inference. IoT Analytics includes pre-built models for common IoT use cases so you can answer questions like which devices are about to fail or which customers are at risk of abandoning their wearable devices.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotanalytics\nx-aws-signingName: iotanalytics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/iotanalytics/\">https://docs.aws.amazon.com/iotanalyt<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5563, 5564], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotanalytics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-27: DataRow\">2017-11-27</span>", children: [5537, 5562, 5565, 5566, 5567, 5568, 5569], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-27, x-release:v4, title:AWS IoT Analytics, description:<p>IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filters, transforms, and enriches IoT data before storing it in a time-series data store for analysis. You can set u..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotanalytics, x-aws-signingName:iotanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotanalytics-2017-11-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotanalytics/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5570], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AWS IoT Analytics, description:<p>IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filters, transforms, and enriches IoT data ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotanalytics/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotanalytics/2017-11-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotanalytics: DataRow\">amazonaws.com:iotanalytics</span>", children: [5535, 5536, 5571], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-27\nversions: { 2017-11-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AWS IoT Analytics, description:<p>IoT Analytics allows you to collect large amounts of device data, process messages, and store them. You can then query the data and run sophisticated analytics on it. IoT Analytics enables advanced data exploration through integration with Jupyter Notebooks and data visualization through integration with Amazon QuickSight.</p> <p>Traditional analytics and business intelligence tools are designed to process structured data. IoT data often comes from devices that record noisy processes (such as temperature, motion, or sound). As a result the data from these devices can have significant gaps, corrupted messages, and false readings that must be cleaned up before analysis can occur. Also, IoT data is often only meaningful in the context of other data from external sources. </p> <p>IoT Analytics automates the steps required to analyze data from IoT devices. IoT Analytics filt... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-09-18"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-09-18"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Core Device Advisor"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that you can use to validate IoT devices for reliable and secure connectivity with AWS IoT Core before deploying devices to production. By using Device Advisor, you can confirm that your devices can connect to AWS IoT Core, follow security best practices and, if applicable, receive software updates from IoT Device Management. You can also download signed qualification reports to submit to the AWS Partner Network to get your device qualified for the AWS Partner Device Catalog without the need to send your device in and wait for it to be tested.\">AWS IoT Core Device Advisor is a clou<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5580, 5581], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5584, 5585, 5586, 5587], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5589, 5590], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotdeviceadvisor"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotdeviceadvisor"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410336, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5596], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5576, 5577, 5578, 5579, 5582, 5583, 5588, 5591, 5592, 5593, 5594, 5595, 5597, 5598, 5599], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-09-18\nx-release: v4\ntitle: AWS IoT Core Device Advisor\ndescription: AWS IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that you can use to validate IoT devices for reliable and secure connectivity with AWS IoT Core before deploying devices to production. By using Device Advisor, you can confirm that your devices can connect to AWS IoT Core, follow security best practices and, if applicable, receive software updates from IoT Device Management. You can also download signed qualification reports to submit to the AWS Partner Network to get your device qualified for the AWS Partner Device Catalog without the need to send your device in and wait for it to be tested.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotdeviceadvisor\nx-aws-signingName: iotdeviceadvisor\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-09-18<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/iotdeviceadvisor/\">https://docs.aws.amazon.com/iotdevice<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5601, 5602], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotdeviceadvisor/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-09-18: DataRow\">2020-09-18</span>", children: [5575, 5600, 5603, 5604, 5605, 5606], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-09-18, x-release:v4, title:AWS IoT Core Device Advisor, description:AWS IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that you can use to validate IoT devices for reliable and secure connectivity with AWS IoT Core before deploying devices to production. By using Device Advisor, you can confirm that your devices can connect to AWS IoT Core, follow security best practices and, if applicable, receive software updates from IoT Device Management. You can also download signed qualification reports to submit to the AWS Partner Network to get your device qualified for the AWS Partner Device Catalog without the need to send your device in and wait for it to be tested., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotdeviceadvisor, x-aws-signingName:iotdeviceadvisor, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotdeviceadvisor-2020-09-18.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotdeviceadvisor/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5607], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-09-18: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-09-18, x-release:v4, title:AWS IoT Core Device Advisor, description:AWS IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that you can use to validate IoT devices for reliable and secure connectivity with AWS IoT Core before deploying devices to production. By using Device Advisor, you can confirm that your devices can connect to AWS IoT Core, follow security best practices and, if applicable, receive software updates from IoT Device Management. You can also download signed qualification reports to submit to the AWS Partner Network to get your device qualified for the AWS Partner Device Catalog without the need to send your device in and wait for it to be tested., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotdeviceadvisor/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotdeviceadvisor/2020-09-18/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-09-18: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotdeviceadvisor: DataRow\">amazonaws.com:iotdeviceadvisor</span>", children: [5573, 5574, 5608], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-09-18\nversions: { 2020-09-18:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-09-18, x-release:v4, title:AWS IoT Core Device Advisor, description:AWS IoT Core Device Advisor is a cloud-based, fully managed test capability for validating IoT devices during device software development. Device Advisor provides pre-built tests that you can use to validate IoT devices for reliable and secure connectivity with AWS IoT Core before deploying devices to production. By using Device Advisor, you can confirm that your devices can connect to AWS IoT Core, follow security best practices and, if applicable, receive software updates from IoT Device Management. You can also download signed qualification reports to submit to the AWS Partner Network to get your device qualified for the AWS Partner Device Catalog without the need to send your device in and wait for it to be tested., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-07-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-07-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Events"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions.\">AWS IoT Events monitors your equipmen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5617, 5618], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5621, 5622, 5623, 5624], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5626, 5627], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotevents"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotevents"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410337, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5633], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5613, 5614, 5615, 5616, 5619, 5620, 5625, 5628, 5629, 5630, 5631, 5632, 5634, 5635, 5636], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-07-27\nx-release: v4\ntitle: AWS IoT Events\ndescription: AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotevents\nx-aws-signingName: iotevents\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-07-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iotevents/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5638, 5639], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotevents/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-07-27: DataRow\">2018-07-27</span>", children: [5612, 5637, 5640, 5641, 5642, 5643, 5644], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-07-27, x-release:v4, title:AWS IoT Events, description:AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotevents, x-aws-signingName:iotevents, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotevents-2018-07-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotevents/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5645], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-07-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-07-27, x-release:v4, title:AWS IoT Events, description:AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotevents, x-aws-signingName:iotevents, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotevents-2018-07-27.normal.json, converter:{ url:https://github.com/merma..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotevents/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotevents/2018-07-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-07-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotevents: DataRow\">amazonaws.com:iotevents</span>", children: [5610, 5611, 5646], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-07-27\nversions: { 2018-07-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-07-27, x-release:v4, title:AWS IoT Events, description:AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events API operations to create, read, update, and delete inputs and detector models, and to list their versions., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotevents, x-aws-signingName:iotevents, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotevents-2018-07-27.normal.json, c... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-10-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-10-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Events Data"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events Data API commands to send inputs to detectors, list detectors, and view or update a detector's status.</p> <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is AWS IoT Events?</a> in the <i>AWS IoT Events Developer Guide</i>.</p>\"><p>AWS IoT Events monitors your equip<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5655, 5656], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5659, 5660, 5661, 5662], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5664, 5665], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotevents-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ioteventsdata"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410338, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5671], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5651, 5652, 5653, 5654, 5657, 5658, 5663, 5666, 5667, 5668, 5669, 5670, 5672, 5673, 5674], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-10-23\nx-release: v4\ntitle: AWS IoT Events Data\ndescription: <p>AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events Data API commands to send inputs to detectors, list detectors, and view or update a detector's status.</p> <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is AWS IoT Events?</a> in the <i>AWS IoT Events Developer Guide</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotevents-data\nx-aws-signingName: ioteventsdata\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-10-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iotevents/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5676, 5677], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotevents/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-10-23: DataRow\">2018-10-23</span>", children: [5650, 5675, 5678, 5679, 5680, 5681, 5682], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-10-23, x-release:v4, title:AWS IoT Events Data, description:<p>AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events Data API commands to send inputs to detectors, list detectors, and view or update a detector's status.</p> <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is AWS IoT Events?</a> in the <i>AWS IoT Events Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotevents-data, x-aws-signingName:ioteventsdata, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotevents-data-2018-10-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotevents/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5683], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-10-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-23, x-release:v4, title:AWS IoT Events Data, description:<p>AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events Data API commands to send inputs to detectors, list detectors, and view or update a detector's status.</p> <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is AWS IoT Events?</a> in the <i>AWS IoT Events Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotevents-data, x-a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotevents/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotevents-data/2018-10-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-10-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotevents-data: DataRow\">amazonaws.com:iotevents-data</span>", children: [5648, 5649, 5684], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-10-23\nversions: { 2018-10-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-23, x-release:v4, title:AWS IoT Events Data, description:<p>AWS IoT Events monitors your equipment or device fleets for failures or changes in operation, and triggers actions when such events occur. You can use AWS IoT Events Data API commands to send inputs to detectors, list detectors, and view or update a detector's status.</p> <p> For more information, see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/what-is-iotevents.html">What is AWS IoT Events?</a> in the <i>AWS IoT Events Developer Guide</i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-03"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-03"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Fleet Hub"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>With Fleet Hub for AWS IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets.</p> <note> <p>Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.</p> </note>\"><p>With Fleet Hub for AWS IoT Device <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5693, 5694], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5697, 5698, 5699, 5700], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5702, 5703], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotfleethub"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotfleethub"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410339, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5709], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5689, 5690, 5691, 5692, 5695, 5696, 5701, 5704, 5705, 5706, 5707, 5708, 5710, 5711, 5712], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-03\nx-release: v4\ntitle: AWS IoT Fleet Hub\ndescription: <p>With Fleet Hub for AWS IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets.</p> <note> <p>Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotfleethub\nx-aws-signingName: iotfleethub\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-03<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5714, 5715], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-03: DataRow\">2020-11-03</span>", children: [5688, 5713, 5716, 5717, 5718, 5719], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-03, x-release:v4, title:AWS IoT Fleet Hub, description:<p>With Fleet Hub for AWS IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets.</p> <note> <p>Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotfleethub, x-aws-signingName:iotfleethub, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotfleethub-2020-11-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5720], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-03: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-03, x-release:v4, title:AWS IoT Fleet Hub, description:<p>With Fleet Hub for AWS IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets.</p> <note> <p>Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotfleethub, x-aws-signingName:iotfleethub, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotfleethub-2020-11-03.normal.json, converter:{ url:https://github.com/mermade/aws2open..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotfleethub/2020-11-03/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-03: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotfleethub: DataRow\">amazonaws.com:iotfleethub</span>", children: [5686, 5687, 5721], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-03\nversions: { 2020-11-03:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-03, x-release:v4, title:AWS IoT Fleet Hub, description:<p>With Fleet Hub for AWS IoT Device Management you can build stand-alone web applications for monitoring the health of your device fleets.</p> <note> <p>Fleet Hub for AWS IoT Device Management is in public preview and is subject to change.</p> </note>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotfleethub, x-aws-signingName:iotfleethub, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotfleethub-2020-11-03.normal.json, converter:{ ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-10-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-10-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Secure Tunneling"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS IoT Secure Tunneling</fullname> <p>AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.</p> <p>For more information about how AWS IoT Secure Tunneling works, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/secure-tunneling.html">AWS IoT Secure Tunneling</a>.</p>\"><fullname>AWS IoT Secure Tunneling</f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5730, 5731], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5734, 5735, 5736, 5737], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5739, 5740], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotsecuretunneling"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["IoTSecuredTunneling"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410340, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5746], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5726, 5727, 5728, 5729, 5732, 5733, 5738, 5741, 5742, 5743, 5744, 5745, 5747, 5748, 5749], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-10-05\nx-release: v4\ntitle: AWS IoT Secure Tunneling\ndescription: <fullname>AWS IoT Secure Tunneling</fullname> <p>AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.</p> <p>For more information about how AWS IoT Secure Tunneling works, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/secure-tunneling.html">AWS IoT Secure Tunneling</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotsecuretunneling\nx-aws-signingName: IoTSecuredTunneling\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-10-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iot/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5751, 5752], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iot/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-10-05: DataRow\">2018-10-05</span>", children: [5725, 5750, 5753, 5754, 5755, 5756, 5757], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-10-05, x-release:v4, title:AWS IoT Secure Tunneling, description:<fullname>AWS IoT Secure Tunneling</fullname> <p>AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.</p> <p>For more information about how AWS IoT Secure Tunneling works, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/secure-tunneling.html">AWS IoT Secure Tunneling</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotsecuretunneling, x-aws-signingName:IoTSecuredTunneling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotsecuretunneling-2018-10-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5758], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-10-05: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-05, x-release:v4, title:AWS IoT Secure Tunneling, description:<fullname>AWS IoT Secure Tunneling</fullname> <p>AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.</p> <p>For more information about how AWS IoT Secure Tunneling works, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/secure-tunneling.html">AWS IoT Secure Tunneling</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotsecuretunneling, x-aws-signingName:IoTSecuredTunneling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iot/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotsecuretunneling/2018-10-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-10-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotsecuretunneling: DataRow\">amazonaws.com:iotsecuretunneling</span>", children: [5723, 5724, 5759], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-10-05\nversions: { 2018-10-05:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-05, x-release:v4, title:AWS IoT Secure Tunneling, description:<fullname>AWS IoT Secure Tunneling</fullname> <p>AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.</p> <p>For more information about how AWS IoT Secure Tunneling works, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/secure-tunneling.html">AWS IoT Secure Tunneling</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotsecuretunneling, x-aws-signingName:IoTSecuredTunneling, x-origin:[1 x 4] { contentType:application/json, ur... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT SiteWise"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects <a href="https://en.wikipedia.org/wiki/Internet_of_things#Industrial_applications">Industrial Internet of Things (IIoT)</a> devices to the power of the Amazon Web Services Cloud. For more information, see the <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/">IoT SiteWise User Guide</a>. For information about IoT SiteWise quotas, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.\">Welcome to the IoT SiteWise API Refer<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5768, 5769], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5772, 5773, 5774, 5775], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5777, 5778], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotsitewise"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotsitewise"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410341, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5784], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5764, 5765, 5766, 5767, 5770, 5771, 5776, 5779, 5780, 5781, 5782, 5783, 5785, 5786, 5787], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-02\nx-release: v4\ntitle: AWS IoT SiteWise\ndescription: Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects <a href="https://en.wikipedia.org/wiki/Internet_of_things#Industrial_applications">Industrial Internet of Things (IIoT)</a> devices to the power of the Amazon Web Services Cloud. For more information, see the <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/">IoT SiteWise User Guide</a>. For information about IoT SiteWise quotas, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotsitewise\nx-aws-signingName: iotsitewise\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iotsitewise/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5789, 5790], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotsitewise/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-12T18:33:47.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-02: DataRow\">2019-12-02</span>", children: [5763, 5788, 5791, 5792, 5793, 5794, 5795], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-29T20:05:58.000Z\ninfo: { version:2019-12-02, x-release:v4, title:AWS IoT SiteWise, description:Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects <a href="https://en.wikipedia.org/wiki/Internet_of_things#Industrial_applications">Industrial Internet of Things (IIoT)</a> devices to the power of the Amazon Web Services Cloud. For more information, see the <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/">IoT SiteWise User Guide</a>. For information about IoT SiteWise quotas, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotsitewise, x-aws-signingName:iotsitewise, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotsitewise-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotsitewise/ }\nupdated: 2020-05-12T18:33:47.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-29T20:05:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5796], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-02: { added:2020-04-29T20:05:58.000Z, info:{ version:2019-12-02, x-release:v4, title:AWS IoT SiteWise, description:Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects <a href="https://en.wikipedia.org/wiki/Internet_of_things#Industrial_applications">Industrial Internet of Things (IIoT)</a> devices to the power of the Amazon Web Services Cloud. For more information, see the <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/">IoT SiteWise User Guide</a>. For information about IoT SiteWise quotas, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 Lic..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotsitewise/ }, updated:2020-05-12T18:33:47.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotsitewise/2019-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotsitewise: DataRow\">amazonaws.com:iotsitewise</span>", children: [5761, 5762, 5797], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-29T20:05:58.000Z\npreferred: 2019-12-02\nversions: { 2019-12-02:{ added:2020-04-29T20:05:58.000Z, info:{ version:2019-12-02, x-release:v4, title:AWS IoT SiteWise, description:Welcome to the IoT SiteWise API Reference. IoT SiteWise is an Amazon Web Services service that connects <a href="https://en.wikipedia.org/wiki/Internet_of_things#Industrial_applications">Industrial Internet of Things (IIoT)</a> devices to the power of the Amazon Web Services Cloud. For more information, see the <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/">IoT SiteWise User Guide</a>. For information about IoT SiteWise quotas, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/quotas.html">Quotas</a> in the <i>IoT SiteWise User Guide</i>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:Permit... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-29T20:05:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Things Graph"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS IoT Things Graph</fullname> <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services and defining how they interact at an abstract level.</p> <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>\"><fullname>AWS IoT Things Graph</fulln<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5806, 5807], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5810, 5811, 5812, 5813], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5815, 5816], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotthingsgraph"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotthingsgraph"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410342, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5822], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5802, 5803, 5804, 5805, 5808, 5809, 5814, 5817, 5818, 5819, 5820, 5821, 5823, 5824, 5825], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-06\nx-release: v4\ntitle: AWS IoT Things Graph\ndescription: <fullname>AWS IoT Things Graph</fullname> <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services and defining how they interact at an abstract level.</p> <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotthingsgraph\nx-aws-signingName: iotthingsgraph\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/iotthingsgraph/\">https://docs.aws.amazon.com/iotthings<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5827, 5828], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotthingsgraph/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-06: DataRow\">2018-09-06</span>", children: [5801, 5826, 5829, 5830, 5831, 5832, 5833], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-06, x-release:v4, title:AWS IoT Things Graph, description:<fullname>AWS IoT Things Graph</fullname> <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services and defining how they interact at an abstract level.</p> <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotthingsgraph, x-aws-signingName:iotthingsgraph, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotthingsgraph-2018-09-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotthingsgraph/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5834], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-06, x-release:v4, title:AWS IoT Things Graph, description:<fullname>AWS IoT Things Graph</fullname> <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services and defining how they interact at an abstract level.</p> <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotthingsgraph/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotthingsgraph/2018-09-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotthingsgraph: DataRow\">amazonaws.com:iotthingsgraph</span>", children: [5799, 5800, 5835], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-06\nversions: { 2018-09-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-06, x-release:v4, title:AWS IoT Things Graph, description:<fullname>AWS IoT Things Graph</fullname> <p>AWS IoT Things Graph provides an integrated set of tools that enable developers to connect devices and services that use different standards, such as units of measure and communication protocols. AWS IoT Things Graph makes it possible to build IoT applications with little to no code by connecting devices and services and defining how they interact at an abstract level.</p> <p>For more information about how AWS IoT Things Graph works, see the <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-whatis.html">User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS IoT Wireless"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS IoT Wireless API documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5844, 5845], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5848, 5849, 5850, 5851], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5853, 5854], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iotwireless"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["iotwireless"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410343, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5860], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5840, 5841, 5842, 5843, 5846, 5847, 5852, 5855, 5856, 5857, 5858, 5859, 5861, 5862, 5863], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-22\nx-release: v4\ntitle: AWS IoT Wireless\ndescription: AWS IoT Wireless API documentation\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: iotwireless\nx-aws-signingName: iotwireless\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/iotwireless/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5865, 5866], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/iotwireless/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-22: DataRow\">2020-11-22</span>", children: [5839, 5864, 5867, 5868, 5869, 5870], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-22, x-release:v4, title:AWS IoT Wireless, description:AWS IoT Wireless API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotwireless, x-aws-signingName:iotwireless, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotwireless-2020-11-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotwireless/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5871], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-22: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-22, x-release:v4, title:AWS IoT Wireless, description:AWS IoT Wireless API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotwireless, x-aws-signingName:iotwireless, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotwireless-2020-11-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/iotwireless/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/iotwireless/2020-11-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:iotwireless: DataRow\">amazonaws.com:iotwireless</span>", children: [5837, 5838, 5872], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-22\nversions: { 2020-11-22:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-22, x-release:v4, title:AWS IoT Wireless, description:AWS IoT Wireless API documentation, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:iotwireless, x-aws-signingName:iotwireless, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/iotwireless-2020-11-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-cate... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-15T18:59:09.806Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-15T18:59:09.806Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Interactive Video Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p> <b>Introduction</b> </p> <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, including errors.</p> <p>The API is an AWS regional service, currently in these regions: us-west-2, us-east-1, and eu-west-1.</p> <p> <i> <b>All API request parameters and URLs are case sensitive. </b> </i> </p> <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document History</a>.</p> <p> <b>Service Endpoints</b> </p> <p>The following are the Amazon IVS service endpoints (all HTTPS): </p> <p>Region name: US West (Oregon)</p> <ul> <li> <p>Region: <code>us-west-2</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code> </p> </li> </ul> <p>Region name: US East (Virginia)</p> <ul> <li> <p>Region: <code>us-east-1</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>Region name: EU West (Dublin)</p> <ul> <li> <p>Region: <code>eu-west-1</code> </p> </li> <li> <p>Endpoint: <code>ivs.eu-west-1.amazonaws.com</code> </p> </li> </ul> <p> <b>Allowed Header Values</b> </p> <ul> <li> <p> <code> <b>Accept:</b> </code> application/json</p> </li> <li> <p> <code> <b>Accept-Encoding:</b> </code> gzip, deflate</p> </li> <li> <p> <code> <b>Content-Type:</b> </code>application/json</p> </li> </ul> <p> <b>Resources</b> </p> <p>The following resources contain information about your IVS live stream (see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/getting-started.html"> Getting Started with Amazon IVS</a>):</p> <ul> <li> <p>Channel — Stores configuration data related to your live stream. You first create a channel and then use the channel’s stream key to start your live stream. See the Channel endpoints for more information. </p> </li> <li> <p>Stream key — An identifier assigned by Amazon IVS when you create a channel, which is then used to authorize streaming. See the StreamKey endpoints for more information. <i> <b>Treat the stream key like a secret, since it allows anyone to stream to the channel.</b> </i> </p> </li> <li> <p>Playback key pair — Video playback may be restricted using playback-authorization tokens, which use public-key encryption. A playback key pair is the public-private pair of keys used to sign and validate the playback-authorization token. See the PlaybackKeyPair endpoints for more information.</p> </li> <li> <p>Recording configuration — Stores configuration related to recording a live stream and where to store the recorded content. Multiple channels can reference the same recording configuration. See the Recording Configuration endpoints for more information.</p> </li> </ul> <p> <b>Tagging</b> </p> <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag comprises a <i>key</i> and a <i>value</i>, both set by you. For example, you might set a tag as <code>topic:nature</code> to label a particular video category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to tags.</p> <p>Tags can help you identify and organize your AWS resources. For example, you can use the same tag for different resources to indicate that they are related. You can also use tags to manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html"> Access Tags</a>). </p> <p>The Amazon IVS API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and <a>ListTagsForResource</a>. The following resources support tagging: Channels, Stream Keys, Playback Key Pairs, and Recording Configurations.</p> <p> <b>Authentication versus Authorization</b> </p> <p>Note the differences between these concepts:</p> <ul> <li> <p> <i>Authentication</i> is about verifying identity. You need to be authenticated to sign Amazon IVS API requests.</p> </li> <li> <p> <i>Authorization</i> is about granting permissions. You need to be authorized to view <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Amazon IVS private channels</a>. (Private channels are channels that are enabled for "playback authorization.")</p> </li> </ul> <p> <b>Authentication</b> </p> <p>All Amazon IVS API requests must be authenticated with a signature. The AWS Command-Line Interface (CLI) and Amazon IVS Player SDKs take care of signing the underlying API calls for you. However, if your application calls the Amazon IVS API directly, it’s your responsibility to sign the requests.</p> <p>You generate a signature using valid AWS credentials that have permission to perform the requested action. For example, you must sign PutMetadata requests with a signature generated from an IAM user account that has the <code>ivs:PutMetadata</code> permission.</p> <p>For more information:</p> <ul> <li> <p>Authentication and generating signatures — See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">Authenticating Requests (AWS Signature Version 4)</a> in the <i>AWS General Reference</i>.</p> </li> <li> <p>Managing Amazon IVS permissions — See <a href="https://docs.aws.amazon.com/ivs/latest/userguide/security-iam.html">Identity and Access Management</a> on the Security page of the <i>Amazon IVS User Guide</i>.</p> </li> </ul> <p> <b>Channel Endpoints</b> </p> <ul> <li> <p> <a>CreateChannel</a> — Creates a new channel and an associated stream key to start streaming.</p> </li> <li> <p> <a>GetChannel</a> — Gets the channel configuration for the specified channel ARN (Amazon Resource Name).</p> </li> <li> <p> <a>BatchGetChannel</a> — Performs <a>GetChannel</a> on multiple ARNs simultaneously.</p> </li> <li> <p> <a>ListChannels</a> — Gets summary information about all channels in your account, in the AWS region where the API request is processed. This list can be filtered to match a specified name or recording-configuration ARN. Filters are mutually exclusive and cannot be used together. If you try to use both filters, you will get an error (409 Conflict Exception).</p> </li> <li> <p> <a>UpdateChannel</a> — Updates a channel's configuration. This does not affect an ongoing stream of this channel. You must stop and restart the stream for the changes to take effect.</p> </li> <li> <p> <a>DeleteChannel</a> — Deletes the specified channel.</p> </li> </ul> <p> <b>StreamKey Endpoints</b> </p> <ul> <li> <p> <a>CreateStreamKey</a> — Creates a stream key, used to initiate a stream, for the specified channel ARN.</p> </li> <li> <p> <a>GetStreamKey</a> — Gets stream key information for the specified ARN.</p> </li> <li> <p> <a>BatchGetStreamKey</a> — Performs <a>GetStreamKey</a> on multiple ARNs simultaneously.</p> </li> <li> <p> <a>ListStreamKeys</a> — Gets summary information about stream keys for the specified channel.</p> </li> <li> <p> <a>DeleteStreamKey</a> — Deletes the stream key for the specified ARN, so it can no longer be used to stream.</p> </li> </ul> <p> <b>Stream Endpoints</b> </p> <ul> <li> <p> <a>GetStream</a> — Gets information about the active (live) stream on a specified channel.</p> </li> <li> <p> <a>ListStreams</a> — Gets summary information about live streams in your account, in the AWS region where the API request is processed.</p> </li> <li> <p> <a>StopStream</a> — Disconnects the incoming RTMPS stream for the specified channel. Can be used in conjunction with <a>DeleteStreamKey</a> to prevent further streaming to a channel.</p> </li> <li> <p> <a>PutMetadata</a> — Inserts metadata into the active stream of the specified channel. A maximum of 5 requests per second per channel is allowed, each with a maximum 1 KB payload. (If 5 TPS is not sufficient for your needs, we recommend batching your data into a single PutMetadata call.)</p> </li> </ul> <p> <b>PlaybackKeyPair Endpoints</b> </p> <p>For more information, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Setting Up Private Channels</a> in the <i>Amazon IVS User Guide</i>.</p> <ul> <li> <p> <a>ImportPlaybackKeyPair</a> — Imports the public portion of a new key pair and returns its <code>arn</code> and <code>fingerprint</code>. The <code>privateKey</code> can then be used to generate viewer authorization tokens, to grant viewers access to private channels (channels enabled for playback authorization).</p> </li> <li> <p> <a>GetPlaybackKeyPair</a> — Gets a specified playback authorization key pair and returns the <code>arn</code> and <code>fingerprint</code>. The <code>privateKey</code> held by the caller can be used to generate viewer authorization tokens, to grant viewers access to private channels.</p> </li> <li> <p> <a>ListPlaybackKeyPairs</a> — Gets summary information about playback key pairs.</p> </li> <li> <p> <a>DeletePlaybackKeyPair</a> — Deletes a specified authorization key pair. This invalidates future viewer tokens generated using the key pair’s <code>privateKey</code>.</p> </li> </ul> <p> <b>RecordingConfiguration Endpoints</b> </p> <ul> <li> <p> <a>CreateRecordingConfiguration</a> — Creates a new recording configuration, used to enable recording to Amazon S3.</p> </li> <li> <p> <a>GetRecordingConfiguration</a> — Gets the recording-configuration metadata for the specified ARN.</p> </li> <li> <p> <a>ListRecordingConfigurations</a> — Gets summary information about all recording configurations in your account, in the AWS region where the API request is processed.</p> </li> <li> <p> <a>DeleteRecordingConfiguration</a> — Deletes the recording configuration for the specified ARN.</p> </li> </ul> <p> <b>AWS Tags Endpoints</b> </p> <ul> <li> <p> <a>TagResource</a> — Adds or updates tags for the AWS resource with the specified ARN.</p> </li> <li> <p> <a>UntagResource</a> — Removes tags from the resource with the specified ARN.</p> </li> <li> <p> <a>ListTagsForResource</a> — Gets information about AWS tags for the specified ARN.</p> </li> </ul>\"><p> <b>Introduction</b> </p> <p>The A<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5881, 5882], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5885, 5886, 5887, 5888], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5890, 5891], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ivs"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ivs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410344, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5897], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5877, 5878, 5879, 5880, 5883, 5884, 5889, 5892, 5893, 5894, 5895, 5896, 5898, 5899, 5900], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-14\nx-release: v4\ntitle: Amazon Interactive Video Service\ndescription: <p> <b>Introduction</b> </p> <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, including errors.</p> <p>The API is an AWS regional service, currently in these regions: us-west-2, us-east-1, and eu-west-1.</p> <p> <i> <b>All API request parameters and URLs are case sensitive. </b> </i> </p> <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document History</a>.</p> <p> <b>Service Endpoints</b> </p> <p>The following are the Amazon IVS service endpoints (all HTTPS): </p> <p>Region name: US West (Oregon)</p> <ul> <li> <p>Region: <code>us-west-2</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code> </p> </li> </ul> <p>Region name: US East (Virginia)</p> <ul> <li> <p>Region: <code>us-east-1</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-east-1.amazonaws.com</code> </p> </li> </ul> <p>Region name: EU West (Dublin)</p> <ul> <li> <p>Region: <code>eu-west-1</code> </p> </li> <li> <p>Endpoint: <code>ivs.eu-west-1.amazonaws.com</code> </p> </li> </ul> <p> <b>Allowed Header Values</b> </p> <ul> <li> <p> <code> <b>Accept:</b> </code> application/json</p> </li> <li> <p> <code> <b>Accept-Encoding:</b> </code> gzip, deflate</p> </li> <li> <p> <code> <b>Content-Type:</b> </code>application/json</p> </li> </ul> <p> <b>Resources</b> </p> <p>The following resources contain information about your IVS live stream (see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/getting-started.html"> Getting Started with Amazon IVS</a>):</p> <ul> <li> <p>Channel — Stores configuration data related to your live stream. You first create a channel and then use the channel’s stream key to start your live stream. See the Channel endpoints for more information. </p> </li> <li> <p>Stream key — An identifier assigned by Amazon IVS when you create a channel, which is then used to authorize streaming. See the StreamKey endpoints for more information. <i> <b>Treat the stream key like a secret, since it allows anyone to stream to the channel.</b> </i> </p> </li> <li> <p>Playback key pair — Video playback may be restricted using playback-authorization tokens, which use public-key encryption. A playback key pair is the public-private pair of keys used to sign and validate the playback-authorization token. See the PlaybackKeyPair endpoints for more information.</p> </li> <li> <p>Recording configuration — Stores configuration related to recording a live stream and where to store the recorded content. Multiple channels can reference the same recording configuration. See the Recording Configuration endpoints for more information.</p> </li> </ul> <p> <b>Tagging</b> </p> <p>A <i>tag</i> is a metadata label that you assign to an AWS resource. A tag comprises a <i>key</i> and a <i>value</i>, both set by you. For example, you might set a tag as <code>topic:nature</code> to label a particular video category. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS Resources</a> for more information, including restrictions that apply to tags.</p> <p>Tags can help you identify and organize your AWS resources. For example, you can use the same tag for different resources to indicate that they are related. You can also use tags to manage access (see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html"> Access Tags</a>). </p> <p>The Amazon IVS API has these tag-related endpoints: <a>TagResource</a>, <a>UntagResource</a>, and <a>ListTagsForResource</a>. The following resources support tagging: Channels, Stream Keys, Playback Key Pairs, and Recording Configurations.</p> <p> <b>Authentication versus Authorization</b> </p> <p>Note the differences between these concepts:</p> <ul> <li> <p> <i>Authentication</i> is about verifying identity. You need to be authenticated to sign Amazon IVS API requests.</p> </li> <li> <p> <i>Authorization</i> is about granting permissions. You need to be authorized to view <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Amazon IVS private channels</a>. (Private channels are channels that are enabled for "playback authorization.")</p> </li> </ul> <p> <b>Authentication</b> </p> <p>All Amazon IVS API requests must be authenticated with a signature. The AWS Command-Line Interface (CLI) and Amazon IVS Player SDKs take care of signing the underlying API calls for you. However, if your application calls the Amazon IVS API directly, it’s your responsibility to sign the requests.</p> <p>You generate a signature using valid AWS credentials that have permission to perform the requested action. For example, you must sign PutMetadata requests with a signature generated from an IAM user account that has the <code>ivs:PutMetadata</code> permission.</p> <p>For more information:</p> <ul> <li> <p>Authentication and generating signatures — See <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">Authenticating Requests (AWS Signature Version 4)</a> in the <i>AWS General Reference</i>.</p> </li> <li> <p>Managing Amazon IVS permissions — See <a href="https://docs.aws.amazon.com/ivs/latest/userguide/security-iam.html">Identity and Access Management</a> on the Security page of the <i>Amazon IVS User Guide</i>.</p> </li> </ul> <p> <b>Channel Endpoints</b> </p> <ul> <li> <p> <a>CreateChannel</a> — Creates a new channel and an associated stream key to start streaming.</p> </li> <li> <p> <a>GetChannel</a> — Gets the channel configuration for the specified channel ARN (Amazon Resource Name).</p> </li> <li> <p> <a>BatchGetChannel</a> — Performs <a>GetChannel</a> on multiple ARNs simultaneously.</p> </li> <li> <p> <a>ListChannels</a> — Gets summary information about all channels in your account, in the AWS region where the API request is processed. This list can be filtered to match a specified name or recording-configuration ARN. Filters are mutually exclusive and cannot be used together. If you try to use both filters, you will get an error (409 Conflict Exception).</p> </li> <li> <p> <a>UpdateChannel</a> — Updates a channel's configuration. This does not affect an ongoing stream of this channel. You must stop and restart the stream for the changes to take effect.</p> </li> <li> <p> <a>DeleteChannel</a> — Deletes the specified channel.</p> </li> </ul> <p> <b>StreamKey Endpoints</b> </p> <ul> <li> <p> <a>CreateStreamKey</a> — Creates a stream key, used to initiate a stream, for the specified channel ARN.</p> </li> <li> <p> <a>GetStreamKey</a> — Gets stream key information for the specified ARN.</p> </li> <li> <p> <a>BatchGetStreamKey</a> — Performs <a>GetStreamKey</a> on multiple ARNs simultaneously.</p> </li> <li> <p> <a>ListStreamKeys</a> — Gets summary information about stream keys for the specified channel.</p> </li> <li> <p> <a>DeleteStreamKey</a> — Deletes the stream key for the specified ARN, so it can no longer be used to stream.</p> </li> </ul> <p> <b>Stream Endpoints</b> </p> <ul> <li> <p> <a>GetStream</a> — Gets information about the active (live) stream on a specified channel.</p> </li> <li> <p> <a>ListStreams</a> — Gets summary information about live streams in your account, in the AWS region where the API request is processed.</p> </li> <li> <p> <a>StopStream</a> — Disconnects the incoming RTMPS stream for the specified channel. Can be used in conjunction with <a>DeleteStreamKey</a> to prevent further streaming to a channel.</p> </li> <li> <p> <a>PutMetadata</a> — Inserts metadata into the active stream of the specified channel. A maximum of 5 requests per second per channel is allowed, each with a maximum 1 KB payload. (If 5 TPS is not sufficient for your needs, we recommend batching your data into a single PutMetadata call.)</p> </li> </ul> <p> <b>PlaybackKeyPair Endpoints</b> </p> <p>For more information, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html">Setting Up Private Channels</a> in the <i>Amazon IVS User Guide</i>.</p> <ul> <li> <p> <a>ImportPlaybackKeyPair</a> — Imports the public portion of a new key pair and returns its <code>arn</code> and <code>fingerprint</code>. The <code>privateKey</code> can then be used to generate viewer authorization tokens, to grant viewers access to private channels (channels enabled for playback authorization).</p> </li> <li> <p> <a>GetPlaybackKeyPair</a> — Gets a specified playback authorization key pair and returns the <code>arn</code> and <code>fingerprint</code>. The <code>privateKey</code> held by the caller can be used to generate viewer authorization tokens, to grant viewers access to private channels.</p> </li> <li> <p> <a>ListPlaybackKeyPairs</a> — Gets summary information about playback key pairs.</p> </li> <li> <p> <a>DeletePlaybackKeyPair</a> — Deletes a specified authorization key pair. This invalidates future viewer tokens generated using the key pair’s <code>privateKey</code>.</p> </li> </ul> <p> <b>RecordingConfiguration Endpoints</b> </p> <ul> <li> <p> <a>CreateRecordingConfiguration</a> — Creates a new recording configuration, used to enable recording to Amazon S3.</p> </li> <li> <p> <a>GetRecordingConfiguration</a> — Gets the recording-configuration metadata for the specified ARN.</p> </li> <li> <p> <a>ListRecordingConfigurations</a> — Gets summary information about all recording configurations in your account, in the AWS region where the API request is processed.</p> </li> <li> <p> <a>DeleteRecordingConfiguration</a> — Deletes the recording configuration for the specified ARN.</p> </li> </ul> <p> <b>AWS Tags Endpoints</b> </p> <ul> <li> <p> <a>TagResource</a> — Adds or updates tags for the AWS resource with the specified ARN.</p> </li> <li> <p> <a>UntagResource</a> — Removes tags from the resource with the specified ARN.</p> </li> <li> <p> <a>ListTagsForResource</a> — Gets information about AWS tags for the specified ARN.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ivs\nx-aws-signingName: ivs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ivs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5902, 5903], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ivs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-14: DataRow\">2020-07-14</span>", children: [5876, 5901, 5904, 5905, 5906, 5907], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-15T18:59:09.806Z\ninfo: { version:2020-07-14, x-release:v4, title:Amazon Interactive Video Service, description:<p> <b>Introduction</b> </p> <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, including errors.</p> <p>The API is an AWS regional service, currently in these regions: us-west-2, us-east-1, and eu-west-1.</p> <p> <i> <b>All API request parameters and URLs are case sensitive. </b> </i> </p> <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document History</a>.</p> <p> <b>Service Endpoints</b> </p> <p>The following are the Amazon IVS service endpoints (all HTTPS): </p> <p>Region name: US West (Oregon)</p> <ul> <li> <p>Region: <code>us-west-2</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code> </p> </li> </ul> <p>Region name: US East (Virginia)</p> <ul> <li> <p>Region: <code>us-east-1</code> </p> </li> <li> <p>Endpoint: <co..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ivs, x-aws-signingName:ivs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ivs-2020-07-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ivs/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-15T18:59:09.806Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5908], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-14: { added:2020-07-15T18:59:09.806Z, info:{ version:2020-07-14, x-release:v4, title:Amazon Interactive Video Service, description:<p> <b>Introduction</b> </p> <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, including errors.</p> <p>The API is an AWS regional service, currently in these regions: us-west-2, us-east-1, and eu-west-1.</p> <p> <i> <b>All API request parameters and URLs are case sensitive. </b> </i> </p> <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document History</a>.</p> <p> <b>Service Endpoints</b> </p> <p>The following are the Amazon IVS service endpoints (all HTTPS): </p> <p>Region name: US West (Oregon)</p> <ul> <li> <p>Region: <code>us-west-2</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code> </p> </li> </ul> <p>Region name: US East (Vi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ivs/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ivs/2020-07-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ivs: DataRow\">amazonaws.com:ivs</span>", children: [5874, 5875, 5909], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-15T18:59:09.806Z\npreferred: 2020-07-14\nversions: { 2020-07-14:{ added:2020-07-15T18:59:09.806Z, info:{ version:2020-07-14, x-release:v4, title:Amazon Interactive Video Service, description:<p> <b>Introduction</b> </p> <p>The Amazon Interactive Video Service (IVS) API is REST compatible, using a standard HTTP API and an AWS EventBridge event stream for responses. JSON is used for both requests and responses, including errors.</p> <p>The API is an AWS regional service, currently in these regions: us-west-2, us-east-1, and eu-west-1.</p> <p> <i> <b>All API request parameters and URLs are case sensitive. </b> </i> </p> <p>For a summary of notable documentation changes in each release, see <a href="https://docs.aws.amazon.com/ivs/latest/userguide/doc-history.html"> Document History</a>.</p> <p> <b>Service Endpoints</b> </p> <p>The following are the Amazon IVS service endpoints (all HTTPS): </p> <p>Region name: US West (Oregon)</p> <ul> <li> <p>Region: <code>us-west-2</code> </p> </li> <li> <p>Endpoint: <code>ivs.us-west-2.amazonaws.com</code> </p> ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-15T18:59:09.806Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Managed Streaming for Kafka"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"\n <p>The operations for managing an Amazon MSK cluster.</p>\">\n <p>The operations for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5918, 5919], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5922, 5923, 5924, 5925], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5927, 5928], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kafka"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["kafka"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410345, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5934], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5914, 5915, 5916, 5917, 5920, 5921, 5926, 5929, 5930, 5931, 5932, 5933, 5935, 5936, 5937], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-14\nx-release: v4\ntitle: Managed Streaming for Kafka\ndescription: \n <p>The operations for managing an Amazon MSK cluster.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kafka\nx-aws-signingName: kafka\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/kafka/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5939, 5940], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kafka/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-14: DataRow\">2018-11-14</span>", children: [5913, 5938, 5941, 5942, 5943, 5944, 5945], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-14, x-release:v4, title:Managed Streaming for Kafka, description:\n <p>The operations for managing an Amazon MSK cluster.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafka, x-aws-signingName:kafka, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafka-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kafka/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5946], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-14, x-release:v4, title:Managed Streaming for Kafka, description:\n <p>The operations for managing an Amazon MSK cluster.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafka, x-aws-signingName:kafka, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafka-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kafka/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kafka/2018-11-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kafka: DataRow\">amazonaws.com:kafka</span>", children: [5911, 5912, 5947], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-14\nversions: { 2018-11-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-14, x-release:v4, title:Managed Streaming for Kafka, description:\n <p>The operations for managing an Amazon MSK cluster.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafka, x-aws-signingName:kafka, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafka-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-02-03"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-02-03"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWSKendraFrontendService"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Kendra is a service for indexing large document sets.\">Amazon Kendra is a service for indexi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5956, 5957], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5960, 5961, 5962, 5963], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [5965, 5966], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kendra"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["kendra"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410346, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [5972], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5952, 5953, 5954, 5955, 5958, 5959, 5964, 5967, 5968, 5969, 5970, 5971, 5973, 5974, 5975], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-02-03\nx-release: v4\ntitle: AWSKendraFrontendService\ndescription: Amazon Kendra is a service for indexing large document sets.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kendra\nx-aws-signingName: kendra\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-02-03<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/kendra/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [5977, 5978], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kendra/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-11T19:05:17.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-02-03: DataRow\">2019-02-03</span>", children: [5951, 5976, 5979, 5980, 5981, 5982, 5983], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-02-03, x-release:v4, title:AWSKendraFrontendService, description:Amazon Kendra is a service for indexing large document sets., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kendra, x-aws-signingName:kendra, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kendra-2019-02-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kendra/ }\nupdated: 2020-05-11T19:05:17.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [5984], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-02-03: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-02-03, x-release:v4, title:AWSKendraFrontendService, description:Amazon Kendra is a service for indexing large document sets., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kendra, x-aws-signingName:kendra, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kendra-2019-02-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-pr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kendra/ }, updated:2020-05-11T19:05:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kendra/2019-02-03/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-02-03: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kendra: DataRow\">amazonaws.com:kendra</span>", children: [5949, 5950, 5985], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-02-03\nversions: { 2019-02-03:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-02-03, x-release:v4, title:AWSKendraFrontendService, description:Amazon Kendra is a service for indexing large document sets., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kendra, x-aws-signingName:kendra, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kendra-2019-02-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Kinesis Data Streams Service API Reference</fullname> <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.</p>\"><fullname>Amazon Kinesis Data Streams<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [5994, 5995], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [5998, 5999, 6000, 6001], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6003, 6004], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesis"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410347, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6009], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [5990, 5991, 5992, 5993, 5996, 5997, 6002, 6005, 6006, 6007, 6008, 6010, 6011, 6012], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-12-02\nx-release: v4\ntitle: Amazon Kinesis\ndescription: <fullname>Amazon Kinesis Data Streams Service API Reference</fullname> <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesis\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/kinesis/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6014, 6015], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesis/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-12-02: DataRow\">2013-12-02</span>", children: [5989, 6013, 6016, 6017, 6018, 6019, 6020], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-12-02, x-release:v4, title:Amazon Kinesis, description:<fullname>Amazon Kinesis Data Streams Service API Reference</fullname> <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-2013-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesis/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6021], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-12-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-12-02, x-release:v4, title:Amazon Kinesis, description:<fullname>Amazon Kinesis Data Streams Service API Reference</fullname> <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-2013-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesis/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis/2013-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesis: DataRow\">amazonaws.com:kinesis</span>", children: [5987, 5988, 6022], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-12-02\nversions: { 2013-12-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-12-02, x-release:v4, title:Amazon Kinesis, description:<fullname>Amazon Kinesis Data Streams Service API Reference</fullname> <p>Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-2013-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-api... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Kinesis Video Streams Archived Media\">Amazon Kinesis Video Streams Archived<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6031, 6032], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6035, 6036, 6037, 6038], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6040, 6041], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesis-video-archived-media"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410348, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6046], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6027, 6028, 6029, 6030, 6033, 6034, 6039, 6042, 6043, 6044, 6045, 6047, 6048, 6049], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-30\nx-release: v4\ntitle: Amazon Kinesis Video Streams Archived Media\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesis-video-archived-media\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisvideo/\">https://docs.aws.amazon.com/kinesisvi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6051, 6052], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisvideo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-28T19:55:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-30: DataRow\">2017-09-30</span>", children: [6026, 6050, 6053, 6054, 6055, 6056, 6057], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Archived Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-archived-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-archived-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }\nupdated: 2020-04-28T19:55:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6058], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Archived Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-archived-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-archived-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }, updated:2020-04-28T19:55:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-archived-media/2017-09-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesis-video-archived-media: DataRow\">amazonaws.com:kinesis-video-archived-media</span>", children: [6024, 6025, 6059], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-30\nversions: { 2017-09-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Archived Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-archived-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-archived-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-cate... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Video Streams Media"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6068, 6069], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6072, 6073, 6074, 6075], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6077, 6078], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesis-video-media"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410349, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6083], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6064, 6065, 6066, 6067, 6070, 6071, 6076, 6079, 6080, 6081, 6082, 6084, 6085, 6086], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-30\nx-release: v4\ntitle: Amazon Kinesis Video Streams Media\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesis-video-media\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisvideo/\">https://docs.aws.amazon.com/kinesisvi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6088, 6089], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisvideo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-30: DataRow\">2017-09-30</span>", children: [6063, 6087, 6090, 6091, 6092, 6093, 6094], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6095], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-media/2017-09-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesis-video-media: DataRow\">amazonaws.com:kinesis-video-media</span>", children: [6061, 6062, 6096], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-30\nversions: { 2017-09-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams Media, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-media, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-media-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-04"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-04"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Video Signaling Channels"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology.\">Kinesis Video Streams Signaling Servi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6105, 6106], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6109, 6110, 6111, 6112], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6114, 6115], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesis-video-signaling"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410350, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6120], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6101, 6102, 6103, 6104, 6107, 6108, 6113, 6116, 6117, 6118, 6119, 6121, 6122, 6123], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-04\nx-release: v4\ntitle: Amazon Kinesis Video Signaling Channels\ndescription: Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesis-video-signaling\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-04<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisvideo/\">https://docs.aws.amazon.com/kinesisvi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6125, 6126], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisvideo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-04: DataRow\">2019-12-04</span>", children: [6100, 6124, 6127, 6128, 6129, 6130, 6131], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-12-04, x-release:v4, title:Amazon Kinesis Video Signaling Channels, description:Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-signaling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-signaling-2019-12-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6132], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-04: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-04, x-release:v4, title:Amazon Kinesis Video Signaling Channels, description:Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-signaling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-signaling-2019-12-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, ver..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesis-video-signaling/2019-12-04/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-04: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesis-video-signaling: DataRow\">amazonaws.com:kinesis-video-signaling</span>", children: [6098, 6099, 6133], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-12-04\nversions: { 2019-12-04:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-04, x-release:v4, title:Amazon Kinesis Video Signaling Channels, description:Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesis-video-signaling, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesis-video-signaling-2019-12-04.normal.json, converter:{ url:http... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-08-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-08-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Analytics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Kinesis Analytics</fullname> <p> <b>Overview</b> </p> <note> <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p> </note> <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>. The Amazon Kinesis Analytics Developer Guide provides additional information. </p>\"><fullname>Amazon Kinesis Analytics</f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6142, 6143], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6146, 6147, 6148, 6149], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6151, 6152], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesisanalytics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410351, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6157], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6138, 6139, 6140, 6141, 6144, 6145, 6150, 6153, 6154, 6155, 6156, 6158, 6159, 6160], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-08-14\nx-release: v4\ntitle: Amazon Kinesis Analytics\ndescription: <fullname>Amazon Kinesis Analytics</fullname> <p> <b>Overview</b> </p> <note> <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p> </note> <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>. The Amazon Kinesis Analytics Developer Guide provides additional information. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesisanalytics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-08-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisanalytics/\">https://docs.aws.amazon.com/kinesisan<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6162, 6163], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisanalytics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-08-14: DataRow\">2015-08-14</span>", children: [6137, 6161, 6164, 6165, 6166, 6167, 6168], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-08-14, x-release:v4, title:Amazon Kinesis Analytics, description:<fullname>Amazon Kinesis Analytics</fullname> <p> <b>Overview</b> </p> <note> <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p> </note> <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>. The Amazon Kinesis Analytics Developer Guide provides additional information. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisanalytics-2015-08-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisanalytics/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6169], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-08-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-14, x-release:v4, title:Amazon Kinesis Analytics, description:<fullname>Amazon Kinesis Analytics</fullname> <p> <b>Overview</b> </p> <note> <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p> </note> <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>. The Amazon Kinesis Analytics Developer Guide provides additional information. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisanalytics/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalytics/2015-08-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-08-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesisanalytics: DataRow\">amazonaws.com:kinesisanalytics</span>", children: [6135, 6136, 6170], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-08-14\nversions: { 2015-08-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-14, x-release:v4, title:Amazon Kinesis Analytics, description:<fullname>Amazon Kinesis Analytics</fullname> <p> <b>Overview</b> </p> <note> <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p> </note> <p>This is the <i>Amazon Kinesis Analytics v1 API Reference</i>. The Amazon Kinesis Analytics Developer Guide provides additional information. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, lice... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Analytics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics.\">Amazon Kinesis Data Analytics is a fu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6179, 6180], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6183, 6184, 6185, 6186], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6188, 6189], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesisanalyticsv2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["kinesisanalytics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410352, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6195], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6175, 6176, 6177, 6178, 6181, 6182, 6187, 6190, 6191, 6192, 6193, 6194, 6196, 6197, 6198], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-23\nx-release: v4\ntitle: Amazon Kinesis Analytics\ndescription: Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesisanalyticsv2\nx-aws-signingName: kinesisanalytics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisanalytics/\">https://docs.aws.amazon.com/kinesisan<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6200, 6201], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisanalytics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-23: DataRow\">2018-05-23</span>", children: [6174, 6199, 6202, 6203, 6204, 6205, 6206], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-23, x-release:v4, title:Amazon Kinesis Analytics, description:Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisanalyticsv2, x-aws-signingName:kinesisanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisanalyticsv2-2018-05-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisanalytics/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6207], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-23, x-release:v4, title:Amazon Kinesis Analytics, description:Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisanalyticsv2, x-aws-signingName:kinesisanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/ma..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisanalytics/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisanalyticsv2/2018-05-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesisanalyticsv2: DataRow\">amazonaws.com:kinesisanalyticsv2</span>", children: [6172, 6173, 6208], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-23\nversions: { 2018-05-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-23, x-release:v4, title:Amazon Kinesis Analytics, description:Amazon Kinesis Data Analytics is a fully managed service that you can use to process and analyze streaming data using Java, SQL, or Scala. The service enables you to quickly author and run Java, SQL, or Scala code against streaming sources to perform time series analytics, feed real-time dashboards, and create real-time metrics., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisanalyticsv2, x-aws-signingName:kinesisanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Kinesis Video Streams"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6217, 6218], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6221, 6222, 6223, 6224], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6226, 6227], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kinesisvideo"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410353, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6232], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6213, 6214, 6215, 6216, 6219, 6220, 6225, 6228, 6229, 6230, 6231, 6233, 6234, 6235], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-30\nx-release: v4\ntitle: Amazon Kinesis Video Streams\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kinesisvideo\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kinesisvideo/\">https://docs.aws.amazon.com/kinesisvi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6237, 6238], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kinesisvideo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-28T19:55:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-30: DataRow\">2017-09-30</span>", children: [6212, 6236, 6239, 6240, 6241, 6242, 6243], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisvideo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisvideo-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }\nupdated: 2020-04-28T19:55:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6244], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisvideo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisvideo-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kinesisvideo/ }, updated:2020-04-28T19:55:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kinesisvideo/2017-09-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kinesisvideo: DataRow\">amazonaws.com:kinesisvideo</span>", children: [6210, 6211, 6245], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-30\nversions: { 2017-09-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-30, x-release:v4, title:Amazon Kinesis Video Streams, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kinesisvideo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kinesisvideo-2017-09-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDoc... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Key Management Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Key Management Service</fullname> <p>Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/"> <i>Key Management Service Developer Guide</i> </a>.</p> <note> <p>KMS is replacing the term <i>customer master key (CMK)</i> with <i>KMS key</i> and <i>KMS key</i>. The concept has not changed. To prevent breaking changes, KMS is keeping some variations of this term.</p> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and other Amazon Web Services services. For example, the SDKs take care of tasks such as signing requests (see below), managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note> <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to KMS.</p> <p>Clients must support TLS (Transport Layer Security) 1.0. We recommend TLS 1.2. Clients must also support cipher suites with Perfect Forward Secrecy (PFS) such as Ephemeral Diffie-Hellman (DHE) or Elliptic Curve Ephemeral Diffie-Hellman (ECDHE). Most modern systems such as Java 7 and later support these modes.</p> <p> <b>Signing Requests</b> </p> <p>Requests must be signed by using an access key ID and a secret access key. We strongly recommend that you <i>do not</i> use your Amazon Web Services account (root) access key ID and secret key for everyday work with KMS. Instead, use the access key ID and secret access key for an IAM user. You can also use the Amazon Web Services Security Token Service to generate temporary security credentials that you can use to sign requests.</p> <p>All KMS operations require <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>.</p> <p> <b>Logging API Requests</b> </p> <p>KMS supports CloudTrail, a service that logs Amazon Web Services API calls and related events for your Amazon Web Services account and delivers them to an Amazon S3 bucket that you specify. By using the information collected by CloudTrail, you can determine what requests were made to KMS, who made the request, when it was made, and so on. To learn more about CloudTrail, including how to turn it on and find your log files, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/">CloudTrail User Guide</a>.</p> <p> <b>Additional Resources</b> </p> <p>For more information about credentials and request signing, see the following:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services Security Credentials</a> - This topic provides general information about the types of credentials used to access Amazon Web Services.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a> - This section of the <i>IAM User Guide</i> describes how to create and use temporary security credentials.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a> - This set of topics walks you through the process of signing a request using an access key ID and a secret access key.</p> </li> </ul> <p> <b>Commonly Used API Operations</b> </p> <p>Of the API operations discussed in this guide, the following will prove the most useful for most applications. You will likely perform operations other than these, such as creating keys and assigning policies, by using the console.</p> <ul> <li> <p> <a>Encrypt</a> </p> </li> <li> <p> <a>Decrypt</a> </p> </li> <li> <p> <a>GenerateDataKey</a> </p> </li> <li> <p> <a>GenerateDataKeyWithoutPlaintext</a> </p> </li> </ul>\"><fullname>Key Management Service</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6254, 6255], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6258, 6259, 6260, 6261], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6263, 6264], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kms"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410354, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6269], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6250, 6251, 6252, 6253, 6256, 6257, 6262, 6265, 6266, 6267, 6268, 6270, 6271, 6272], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-11-01\nx-release: v4\ntitle: AWS Key Management Service\ndescription: <fullname>Key Management Service</fullname> <p>Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/"> <i>Key Management Service Developer Guide</i> </a>.</p> <note> <p>KMS is replacing the term <i>customer master key (CMK)</i> with <i>KMS key</i> and <i>KMS key</i>. The concept has not changed. To prevent breaking changes, KMS is keeping some variations of this term.</p> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and other Amazon Web Services services. For example, the SDKs take care of tasks such as signing requests (see below), managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note> <p>We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to KMS.</p> <p>Clients must support TLS (Transport Layer Security) 1.0. We recommend TLS 1.2. Clients must also support cipher suites with Perfect Forward Secrecy (PFS) such as Ephemeral Diffie-Hellman (DHE) or Elliptic Curve Ephemeral Diffie-Hellman (ECDHE). Most modern systems such as Java 7 and later support these modes.</p> <p> <b>Signing Requests</b> </p> <p>Requests must be signed by using an access key ID and a secret access key. We strongly recommend that you <i>do not</i> use your Amazon Web Services account (root) access key ID and secret key for everyday work with KMS. Instead, use the access key ID and secret access key for an IAM user. You can also use the Amazon Web Services Security Token Service to generate temporary security credentials that you can use to sign requests.</p> <p>All KMS operations require <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>.</p> <p> <b>Logging API Requests</b> </p> <p>KMS supports CloudTrail, a service that logs Amazon Web Services API calls and related events for your Amazon Web Services account and delivers them to an Amazon S3 bucket that you specify. By using the information collected by CloudTrail, you can determine what requests were made to KMS, who made the request, when it was made, and so on. To learn more about CloudTrail, including how to turn it on and find your log files, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/">CloudTrail User Guide</a>.</p> <p> <b>Additional Resources</b> </p> <p>For more information about credentials and request signing, see the following:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html">Amazon Web Services Security Credentials</a> - This topic provides general information about the types of credentials used to access Amazon Web Services.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a> - This section of the <i>IAM User Guide</i> describes how to create and use temporary security credentials.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a> - This set of topics walks you through the process of signing a request using an access key ID and a secret access key.</p> </li> </ul> <p> <b>Commonly Used API Operations</b> </p> <p>Of the API operations discussed in this guide, the following will prove the most useful for most applications. You will likely perform operations other than these, such as creating keys and assigning policies, by using the console.</p> <ul> <li> <p> <a>Encrypt</a> </p> </li> <li> <p> <a>Decrypt</a> </p> </li> <li> <p> <a>GenerateDataKey</a> </p> </li> <li> <p> <a>GenerateDataKeyWithoutPlaintext</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kms\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/kms/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6274, 6275], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kms/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-11-01: DataRow\">2014-11-01</span>", children: [6249, 6273, 6276, 6277, 6278, 6279, 6280], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-11-01, x-release:v4, title:AWS Key Management Service, description:<fullname>Key Management Service</fullname> <p>Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/"> <i>Key Management Service Developer Guide</i> </a>.</p> <note> <p>KMS is replacing the term <i>customer master key (CMK)</i> with <i>KMS key</i> and <i>KMS key</i>. The concept has not changed. To prevent breaking changes, KMS is keeping some variations of this term.</p> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and other Amazon Web Services services. For example, the SDKs take care of tasks such as signing requests (see below), managing errors, and retrying requests automatically. Fo..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kms, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kms-2014-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kms/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6281], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-01, x-release:v4, title:AWS Key Management Service, description:<fullname>Key Management Service</fullname> <p>Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/"> <i>Key Management Service Developer Guide</i> </a>.</p> <note> <p>KMS is replacing the term <i>customer master key (CMK)</i> with <i>KMS key</i> and <i>KMS key</i>. The concept has not changed. To prevent breaking changes, KMS is keeping some variations of this term.</p> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and other Amazon Web Services services. For example, the SDKs take care of tasks such as sign..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kms/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kms/2014-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kms: DataRow\">amazonaws.com:kms</span>", children: [6247, 6248, 6282], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-11-01\nversions: { 2014-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-01, x-release:v4, title:AWS Key Management Service, description:<fullname>Key Management Service</fullname> <p>Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the <a href="https://docs.aws.amazon.com/kms/latest/developerguide/"> <i>Key Management Service Developer Guide</i> </a>.</p> <note> <p>KMS is replacing the term <i>customer master key (CMK)</i> with <i>KMS key</i> and <i>KMS key</i>. The concept has not changed. To prevent breaking changes, KMS is keeping some variations of this term.</p> <p>Amazon Web Services provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, macOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and other Amazon Web Services services. For example, t... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Lake Formation"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Lake Formation</fullname> <p>Defines the public endpoint for the AWS Lake Formation service.</p>\"><fullname>AWS Lake Formation</fullnam<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6291, 6292], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6295, 6296, 6297, 6298], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6300, 6301], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lakeformation"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lakeformation"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410355, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6307], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6287, 6288, 6289, 6290, 6293, 6294, 6299, 6302, 6303, 6304, 6305, 6306, 6308, 6309, 6310], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-03-31\nx-release: v4\ntitle: AWS Lake Formation\ndescription: <fullname>AWS Lake Formation</fullname> <p>Defines the public endpoint for the AWS Lake Formation service.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lakeformation\nx-aws-signingName: lakeformation\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/lakeformation/\">https://docs.aws.amazon.com/lakeforma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6312, 6313], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lakeformation/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-03-31: DataRow\">2017-03-31</span>", children: [6286, 6311, 6314, 6315, 6316, 6317, 6318], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-03-31, x-release:v4, title:AWS Lake Formation, description:<fullname>AWS Lake Formation</fullname> <p>Defines the public endpoint for the AWS Lake Formation service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lakeformation, x-aws-signingName:lakeformation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lakeformation-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lakeformation/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6319], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-03-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-31, x-release:v4, title:AWS Lake Formation, description:<fullname>AWS Lake Formation</fullname> <p>Defines the public endpoint for the AWS Lake Formation service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lakeformation, x-aws-signingName:lakeformation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lakeformation-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/regist..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lakeformation/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lakeformation/2017-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lakeformation: DataRow\">amazonaws.com:lakeformation</span>", children: [6284, 6285, 6320], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-03-31\nversions: { 2017-03-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-31, x-release:v4, title:AWS Lake Formation, description:<fullname>AWS Lake Formation</fullname> <p>Defines the public endpoint for the AWS Lake Formation service.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lakeformation, x-aws-signingName:lakeformation, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lakeformation-2017-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Lambda"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>\"><fullname>Lambda</fullname> <p> <b>Ov<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6329, 6330], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6333, 6334, 6335, 6336], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6338, 6339], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lambda"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410356, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6344], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6325, 6326, 6327, 6328, 6331, 6332, 6337, 6340, 6341, 6342, 6343, 6345, 6346, 6347], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-03-31\nx-release: v4\ntitle: AWS Lambda\ndescription: <fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lambda\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/lambda/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6349, 6350], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lambda/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-03-31: DataRow\">2015-03-31</span>", children: [6324, 6348, 6351, 6352, 6353, 6354, 6355], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-03-31, x-release:v4, title:AWS Lambda, description:<fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lambda, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lambda-2015-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lambda/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6356], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-03-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-03-31, x-release:v4, title:AWS Lambda, description:<fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lambda, x-origin:[1 x 4] { con..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lambda/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lambda/2015-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lambda: DataRow\">amazonaws.com:lambda</span>", children: [6322, 6323, 6357], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-03-31\nversions: { 2015-03-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-03-31, x-release:v4, title:AWS Lambda, description:<fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html">What is Lambda</a>, and for information about how the service works, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-ser... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-04-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lex Model Building Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>\"><fullname>Amazon Lex Build-Time Actio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6366, 6367], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6370, 6371, 6372, 6373], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6375, 6376], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lex-models"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lex"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410357, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6382], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6362, 6363, 6364, 6365, 6368, 6369, 6374, 6377, 6378, 6379, 6380, 6381, 6383, 6384, 6385], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-04-19\nx-release: v4\ntitle: Amazon Lex Model Building Service\ndescription: <fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lex-models\nx-aws-signingName: lex\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-04-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/lex/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6387, 6388], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lex/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-13T10:54:24.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-04-19: DataRow\">2017-04-19</span>", children: [6361, 6386, 6389, 6390, 6391, 6392, 6393], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-04-19, x-release:v4, title:Amazon Lex Model Building Service, description:<fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lex-models, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lex-models-2017-04-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lex/ }\nupdated: 2020-03-13T10:54:24.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6394], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-04-19: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:Amazon Lex Model Building Service, description:<fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lex-models, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lex-models-2017-04-19.normal.json, converter:{ url:https://github.com/mermade/a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lex/ }, updated:2020-03-13T10:54:24.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lex-models/2017-04-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-04-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lex-models: DataRow\">amazonaws.com:lex-models</span>", children: [6359, 6360, 6395], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-04-19\nversions: { 2017-04-19:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-04-19, x-release:v4, title:Amazon Lex Model Building Service, description:<fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lex-models, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lex-models-2017-04-19.normal.json, conve... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-08-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-08-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS License Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname> AWS License Manager </fullname> <p>AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.</p>\"><fullname> AWS License Manager </full<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6404, 6405], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6408, 6409, 6410, 6411], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6413, 6414], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["license-manager"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410358, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6419], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6400, 6401, 6402, 6403, 6406, 6407, 6412, 6415, 6416, 6417, 6418, 6420, 6421, 6422], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-08-01\nx-release: v4\ntitle: AWS License Manager\ndescription: <fullname> AWS License Manager </fullname> <p>AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: license-manager\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-08-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/license-manager/\">https://docs.aws.amazon.com/license-m<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6424, 6425], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/license-manager/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-08-01: DataRow\">2018-08-01</span>", children: [6399, 6423, 6426, 6427, 6428, 6429, 6430], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-08-01, x-release:v4, title:AWS License Manager, description:<fullname> AWS License Manager </fullname> <p>AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:license-manager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/license-manager-2018-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/license-manager/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6431], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-08-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-01, x-release:v4, title:AWS License Manager, description:<fullname> AWS License Manager </fullname> <p>AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:license-manager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/license-manager-2018-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://por..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/license-manager/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/license-manager/2018-08-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-08-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:license-manager: DataRow\">amazonaws.com:license-manager</span>", children: [6397, 6398, 6432], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-08-01\nversions: { 2018-08-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-01, x-release:v4, title:AWS License Manager, description:<fullname> AWS License Manager </fullname> <p>AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:license-manager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/license-manager-2018-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lightsail"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, storage buckets, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.</p> <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p> <p>This API Reference provides detailed information about the actions, data types, parameters, and errors of the Lightsail service. For more information about the supported AWS Regions, endpoints, and service quotas of the Lightsail service, see <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail Endpoints and Quotas</a> in the <i>AWS General Reference</i>.</p>\"><p>Amazon Lightsail is the easiest wa<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6441, 6442], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6445, 6446, 6447, 6448], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6450, 6451], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lightsail"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410359, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6456], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6437, 6438, 6439, 6440, 6443, 6444, 6449, 6452, 6453, 6454, 6455, 6457, 6458, 6459], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-28\nx-release: v4\ntitle: Amazon Lightsail\ndescription: <p>Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, storage buckets, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.</p> <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p> <p>This API Reference provides detailed information about the actions, data types, parameters, and errors of the Lightsail service. For more information about the supported AWS Regions, endpoints, and service quotas of the Lightsail service, see <a href="https://docs.aws.amazon.com/general/latest/gr/lightsail.html">Amazon Lightsail Endpoints and Quotas</a> in the <i>AWS General Reference</i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lightsail\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/lightsail/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6461, 6462], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lightsail/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-28: DataRow\">2016-11-28</span>", children: [6436, 6460, 6463, 6464, 6465, 6466, 6467], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-28, x-release:v4, title:Amazon Lightsail, description:<p>Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, storage buckets, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.</p> <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p> <p>This API Reference provides detailed information about the actions, data types, parameters, and errors ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lightsail, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lightsail-2016-11-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lightsail/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6468], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:Amazon Lightsail, description:<p>Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, storage buckets, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.</p> <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.</p> <p>This API Reference provides det..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lightsail/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lightsail/2016-11-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lightsail: DataRow\">amazonaws.com:lightsail</span>", children: [6434, 6435, 6469], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-28\nversions: { 2016-11-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:Amazon Lightsail, description:<p>Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, storage buckets, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.</p> <p>You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-set-up-access-keys-to-use-sdk-api-cli">Amazon Lightsail Developer Guide</a>.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Location Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing\">Suite of geospatial services includin<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6478, 6479], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6482, 6483, 6484, 6485], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6487, 6488], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["location"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["geo"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410360, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6494], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6474, 6475, 6476, 6477, 6480, 6481, 6486, 6489, 6490, 6491, 6492, 6493, 6495, 6496, 6497], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-19\nx-release: v4\ntitle: Amazon Location Service\ndescription: Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: location\nx-aws-signingName: geo\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/geo/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6499, 6500], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/geo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-19: DataRow\">2020-11-19</span>", children: [6473, 6498, 6501, 6502, 6503, 6504], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-19, x-release:v4, title:Amazon Location Service, description:Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:location, x-aws-signingName:geo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/location-2020-11-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/geo/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6505], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-19: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-19, x-release:v4, title:Amazon Location Service, description:Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:location, x-aws-signingName:geo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/location-2020-11-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/geo/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/location/2020-11-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:location: DataRow\">amazonaws.com:location</span>", children: [6471, 6472, 6506], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-19\nversions: { 2020-11-19:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-19, x-release:v4, title:Amazon Location Service, description:Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:location, x-aws-signingName:geo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/location-2020-11-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registr... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-03-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-03-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudWatch Logs"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch Logs SDK.</p> <p>You can use CloudWatch Logs to:</p> <ul> <li> <p> <b>Monitor logs from EC2 instances in real-time</b>: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring so no code changes are required. For example, you can monitor application logs for specific literal terms (such as "NullReferenceException") or count the number of occurrences of a literal term at a particular position in log data (such as "404" status codes in an Apache access log). When the term you are searching for is found, CloudWatch Logs reports the data to a CloudWatch metric that you specify.</p> </li> <li> <p> <b>Monitor CloudTrail logged events</b>: You can create alarms in CloudWatch and receive notifications of particular API activity as captured by CloudTrail. You can use the notification to perform troubleshooting.</p> </li> <li> <p> <b>Archive log data</b>: You can use CloudWatch Logs to store your log data in highly durable storage. You can change the log retention setting so that any log events older than this setting are automatically deleted. The CloudWatch Logs agent makes it easy to quickly send both rotated and non-rotated log data off of a host and into the log service. You can then access the raw log data when you need it.</p> </li> </ul>\"><p>You can use Amazon CloudWatch Logs<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6515, 6516], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6519, 6520, 6521, 6522], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6524, 6525], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["logs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410361, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6530], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6511, 6512, 6513, 6514, 6517, 6518, 6523, 6526, 6527, 6528, 6529, 6531, 6532, 6533], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-03-28\nx-release: v4\ntitle: Amazon CloudWatch Logs\ndescription: <p>You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch Logs SDK.</p> <p>You can use CloudWatch Logs to:</p> <ul> <li> <p> <b>Monitor logs from EC2 instances in real-time</b>: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring so no code changes are required. For example, you can monitor application logs for specific literal terms (such as "NullReferenceException") or count the number of occurrences of a literal term at a particular position in log data (such as "404" status codes in an Apache access log). When the term you are searching for is found, CloudWatch Logs reports the data to a CloudWatch metric that you specify.</p> </li> <li> <p> <b>Monitor CloudTrail logged events</b>: You can create alarms in CloudWatch and receive notifications of particular API activity as captured by CloudTrail. You can use the notification to perform troubleshooting.</p> </li> <li> <p> <b>Archive log data</b>: You can use CloudWatch Logs to store your log data in highly durable storage. You can change the log retention setting so that any log events older than this setting are automatically deleted. The CloudWatch Logs agent makes it easy to quickly send both rotated and non-rotated log data off of a host and into the log service. You can then access the raw log data when you need it.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: logs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-03-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/logs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6535, 6536], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/logs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-03-28: DataRow\">2014-03-28</span>", children: [6510, 6534, 6537, 6538, 6539, 6540, 6541], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-03-28, x-release:v4, title:Amazon CloudWatch Logs, description:<p>You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch Logs SDK.</p> <p>You can use CloudWatch Logs to:</p> <ul> <li> <p> <b>Monitor logs from EC2 instances in real-time</b>: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring so no code changes are required. For example, you can monitor application logs for specific literal terms (such as "NullReferenceException") or count the number of occurrences of a literal term at a particular position in log data (su..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:logs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/logs-2014-03-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/logs/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6542], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-03-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-03-28, x-release:v4, title:Amazon CloudWatch Logs, description:<p>You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch Logs SDK.</p> <p>You can use CloudWatch Logs to:</p> <ul> <li> <p> <b>Monitor logs from EC2 instances in real-time</b>: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring so no code changes are required. For example, you can monitor application logs for specific literal terms (such as "NullReferenceException") or count the nu..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/logs/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/logs/2014-03-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-03-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:logs: DataRow\">amazonaws.com:logs</span>", children: [6508, 6509, 6543], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-03-28\nversions: { 2014-03-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-03-28, x-release:v4, title:Amazon CloudWatch Logs, description:<p>You can use Amazon CloudWatch Logs to monitor, store, and access your log files from EC2 instances, CloudTrail, and other sources. You can then retrieve the associated log data from CloudWatch Logs using the CloudWatch console, CloudWatch Logs commands in the Amazon Web Services CLI, CloudWatch Logs API, or CloudWatch Logs SDK.</p> <p>You can use CloudWatch Logs to:</p> <ul> <li> <p> <b>Monitor logs from EC2 instances in real-time</b>: You can use CloudWatch Logs to monitor applications and systems using log data. For example, CloudWatch Logs can track the number of errors that occur in your application logs and send you a notification whenever the rate of errors exceeds a threshold that you specify. CloudWatch Logs uses your log data for monitoring so no code changes are required. For example, you can monitor application logs for specific literal terms (such as "N... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-12-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-12-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lookout for Equipment"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance. \">Amazon Lookout for Equipment is a mac<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6552, 6553], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6556, 6557, 6558, 6559], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6561, 6562], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lookoutequipment"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410362, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6567], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6548, 6549, 6550, 6551, 6554, 6555, 6560, 6563, 6564, 6565, 6566, 6568, 6569, 6570], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-12-15\nx-release: v4\ntitle: Amazon Lookout for Equipment\ndescription: Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lookoutequipment\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-12-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/lookoutequipment/\">https://docs.aws.amazon.com/lookouteq<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6572, 6573], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lookoutequipment/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-12-15: DataRow\">2020-12-15</span>", children: [6547, 6571, 6574, 6575, 6576, 6577], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-12-15, x-release:v4, title:Amazon Lookout for Equipment, description:Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutequipment, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutequipment-2020-12-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutequipment/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6578], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-12-15: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-12-15, x-release:v4, title:Amazon Lookout for Equipment, description:Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutequipment, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutequipment-2020-12-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutequipment/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutequipment/2020-12-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-12-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lookoutequipment: DataRow\">amazonaws.com:lookoutequipment</span>", children: [6545, 6546, 6579], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-12-15\nversions: { 2020-12-15:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-12-15, x-release:v4, title:Amazon Lookout for Equipment, description:Amazon Lookout for Equipment is a machine learning service that uses advanced analytics to identify anomalies in machines from sensor data for use in predictive maintenance. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutequipment, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutequipment-2020-12-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lookout for Metrics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the <i>Amazon Lookout for Metrics API Reference</i>. For an introduction to the service with tutorials for getting started, visit <a href="https://docs.aws.amazon.com/lookoutmetrics/latest/dev">Amazon Lookout for Metrics Developer Guide</a>.\">This is the <i>Amazon Lookout for Met<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6588, 6589], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6592, 6593, 6594, 6595], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6597, 6598], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lookoutmetrics"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lookoutmetrics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410363, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6604], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6584, 6585, 6586, 6587, 6590, 6591, 6596, 6599, 6600, 6601, 6602, 6603, 6605, 6606, 6607], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: Amazon Lookout for Metrics\ndescription: This is the <i>Amazon Lookout for Metrics API Reference</i>. For an introduction to the service with tutorials for getting started, visit <a href="https://docs.aws.amazon.com/lookoutmetrics/latest/dev">Amazon Lookout for Metrics Developer Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lookoutmetrics\nx-aws-signingName: lookoutmetrics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/lookoutmetrics/\">https://docs.aws.amazon.com/lookoutme<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6609, 6610], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lookoutmetrics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [6583, 6608, 6611, 6612, 6613, 6614], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2017-07-25, x-release:v4, title:Amazon Lookout for Metrics, description:This is the <i>Amazon Lookout for Metrics API Reference</i>. For an introduction to the service with tutorials for getting started, visit <a href="https://docs.aws.amazon.com/lookoutmetrics/latest/dev">Amazon Lookout for Metrics Developer Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutmetrics, x-aws-signingName:lookoutmetrics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutmetrics-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutmetrics/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6615], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2021-06-18T13:57:32.889Z, info:{ version:2017-07-25, x-release:v4, title:Amazon Lookout for Metrics, description:This is the <i>Amazon Lookout for Metrics API Reference</i>. For an introduction to the service with tutorials for getting started, visit <a href="https://docs.aws.amazon.com/lookoutmetrics/latest/dev">Amazon Lookout for Metrics Developer Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutmetrics, x-aws-signingName:lookoutmetrics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutmetrics-2017-07-25.normal.json, converter:{ url:https://github.com/m..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutmetrics/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutmetrics/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lookoutmetrics: DataRow\">amazonaws.com:lookoutmetrics</span>", children: [6581, 6582, 6616], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2021-06-18T13:57:32.889Z, info:{ version:2017-07-25, x-release:v4, title:Amazon Lookout for Metrics, description:This is the <i>Amazon Lookout for Metrics API Reference</i>. For an introduction to the service with tutorials for getting started, visit <a href="https://docs.aws.amazon.com/lookoutmetrics/latest/dev">Amazon Lookout for Metrics Developer Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutmetrics, x-aws-signingName:lookoutmetrics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutmetrics-2017-07-25.normal.jso... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lookout for Vision"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.</p> <p>Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.</p>\"><p>This is the Amazon Lookout for Vis<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6625, 6626], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6629, 6630, 6631, 6632], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6634, 6635], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lookoutvision"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lookoutvision"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410364, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6641], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6621, 6622, 6623, 6624, 6627, 6628, 6633, 6636, 6637, 6638, 6639, 6640, 6642, 6643, 6644], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-20\nx-release: v4\ntitle: Amazon Lookout for Vision\ndescription: <p>This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.</p> <p>Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: lookoutvision\nx-aws-signingName: lookoutvision\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/lookoutvision/\">https://docs.aws.amazon.com/lookoutvi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6646, 6647], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lookoutvision/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-20: DataRow\">2020-11-20</span>", children: [6620, 6645, 6648, 6649, 6650, 6651], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-20, x-release:v4, title:Amazon Lookout for Vision, description:<p>This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.</p> <p>Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:lookoutvision, x-aws-signingName:lookoutvision, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/lookoutvision-2020-11-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutvision/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6652], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-20: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-20, x-release:v4, title:Amazon Lookout for Vision, description:<p>This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.</p> <p>Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, ur..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lookoutvision/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/lookoutvision/2020-11-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:lookoutvision: DataRow\">amazonaws.com:lookoutvision</span>", children: [6618, 6619, 6653], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-20\nversions: { 2020-11-20:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-20, x-release:v4, title:Amazon Lookout for Vision, description:<p>This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.</p> <p>Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-12-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-12-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Machine Learning"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Definition of the public APIs exposed by Amazon Machine Learning\">Definition of the public APIs exposed<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6662, 6663], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6666, 6667, 6668, 6669], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6671, 6672], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["machinelearning"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410365, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6677], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6658, 6659, 6660, 6661, 6664, 6665, 6670, 6673, 6674, 6675, 6676, 6678, 6679, 6680], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-12-12\nx-release: v4\ntitle: Amazon Machine Learning\ndescription: Definition of the public APIs exposed by Amazon Machine Learning\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: machinelearning\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-12-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/machinelearning/\">https://docs.aws.amazon.com/machinele<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6682, 6683], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/machinelearning/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-12-12: DataRow\">2014-12-12</span>", children: [6657, 6681, 6684, 6685, 6686, 6687, 6688], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-12-12, x-release:v4, title:Amazon Machine Learning, description:Definition of the public APIs exposed by Amazon Machine Learning, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:machinelearning, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/machinelearning-2014-12-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/machinelearning/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6689], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-12-12: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-12-12, x-release:v4, title:Amazon Machine Learning, description:Definition of the public APIs exposed by Amazon Machine Learning, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:machinelearning, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/machinelearning-2014-12-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/machinelearning/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/machinelearning/2014-12-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-12-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:machinelearning: DataRow\">amazonaws.com:machinelearning</span>", children: [6655, 6656, 6690], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-12-12\nversions: { 2014-12-12:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-12-12, x-release:v4, title:Amazon Machine Learning, description:Definition of the public APIs exposed by Amazon Machine Learning, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:machinelearning, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/machinelearning-2014-12-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-12-19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-12-19"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Macie"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Macie Classic</fullname> <p>Amazon Macie Classic is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie Classic recognizes sensitive data such as personally identifiable information (PII) or intellectual property, and provides you with dashboards and alerts that give visibility into how this data is being accessed or moved. For more information, see the <a href="https://docs.aws.amazon.com/macie/latest/userguide/what-is-macie.html">Amazon Macie Classic User Guide</a>. </p>\"><fullname>Amazon Macie Classic</fulln<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6699, 6700], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6703, 6704, 6705, 6706], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6708, 6709], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["macie"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410366, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6714], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6695, 6696, 6697, 6698, 6701, 6702, 6707, 6710, 6711, 6712, 6713, 6715, 6716, 6717], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-12-19\nx-release: v4\ntitle: Amazon Macie\ndescription: <fullname>Amazon Macie Classic</fullname> <p>Amazon Macie Classic is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie Classic recognizes sensitive data such as personally identifiable information (PII) or intellectual property, and provides you with dashboards and alerts that give visibility into how this data is being accessed or moved. For more information, see the <a href="https://docs.aws.amazon.com/macie/latest/userguide/what-is-macie.html">Amazon Macie Classic User Guide</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: macie\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-12-19<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/macie/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6719, 6720], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/macie/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-12-19: DataRow\">2017-12-19</span>", children: [6694, 6718, 6721, 6722, 6723, 6724, 6725], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-12-19, x-release:v4, title:Amazon Macie, description:<fullname>Amazon Macie Classic</fullname> <p>Amazon Macie Classic is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie Classic recognizes sensitive data such as personally identifiable information (PII) or intellectual property, and provides you with dashboards and alerts that give visibility into how this data is being accessed or moved. For more information, see the <a href="https://docs.aws.amazon.com/macie/latest/userguide/what-is-macie.html">Amazon Macie Classic User Guide</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:macie, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/macie-2017-12-19.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/macie/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6726], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-12-19: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-12-19, x-release:v4, title:Amazon Macie, description:<fullname>Amazon Macie Classic</fullname> <p>Amazon Macie Classic is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie Classic recognizes sensitive data such as personally identifiable information (PII) or intellectual property, and provides you with dashboards and alerts that give visibility into how this data is being accessed or moved. For more information, see the <a href="https://docs.aws.amazon.com/macie/latest/userguide/what-is-macie.html">Amazon Macie Classic User Guide</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apac..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/macie/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/macie/2017-12-19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-12-19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:macie: DataRow\">amazonaws.com:macie</span>", children: [6692, 6693, 6727], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-12-19\nversions: { 2017-12-19:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-12-19, x-release:v4, title:Amazon Macie, description:<fullname>Amazon Macie Classic</fullname> <p>Amazon Macie Classic is a security service that uses machine learning to automatically discover, classify, and protect sensitive data in AWS. Macie Classic recognizes sensitive data such as personally identifiable information (PII) or intellectual property, and provides you with dashboards and alerts that give visibility into how this data is being accessed or moved. For more information, see the <a href="https://docs.aws.amazon.com/macie/latest/userguide/what-is-macie.html">Amazon Macie Classic User Guide</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Macie 2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Macie is a fully managed data security and data privacy service that uses machine learning and pattern matching to discover and protect your sensitive data in AWS. Macie automates the discovery of sensitive data, such as PII and intellectual property, to provide you with insight into the data that your organization stores in AWS. Macie also provides an inventory of your Amazon S3 buckets, which it continually monitors for you. If Macie detects sensitive data or potential data access issues, it generates detailed findings for you to review and act upon as necessary.\">Amazon Macie is a fully managed data <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6736, 6737], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6740, 6741, 6742, 6743], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6745, 6746], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["macie2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["macie2"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410367, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6752], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6732, 6733, 6734, 6735, 6738, 6739, 6744, 6747, 6748, 6749, 6750, 6751, 6753, 6754, 6755], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-01-01\nx-release: v4\ntitle: Amazon Macie 2\ndescription: Amazon Macie is a fully managed data security and data privacy service that uses machine learning and pattern matching to discover and protect your sensitive data in AWS. Macie automates the discovery of sensitive data, such as PII and intellectual property, to provide you with insight into the data that your organization stores in AWS. Macie also provides an inventory of your Amazon S3 buckets, which it continually monitors for you. If Macie detects sensitive data or potential data access issues, it generates detailed findings for you to review and act upon as necessary.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: macie2\nx-aws-signingName: macie2\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/macie2/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6757, 6758], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/macie2/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-01-01: DataRow\">2020-01-01</span>", children: [6731, 6756, 6759, 6760, 6761, 6762], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\ninfo: { version:2020-01-01, x-release:v4, title:Amazon Macie 2, description:Amazon Macie is a fully managed data security and data privacy service that uses machine learning and pattern matching to discover and protect your sensitive data in AWS. Macie automates the discovery of sensitive data, such as PII and intellectual property, to provide you with insight into the data that your organization stores in AWS. Macie also provides an inventory of your Amazon S3 buckets, which it continually monitors for you. If Macie detects sensitive data or potential data access issues, it generates detailed findings for you to review and act upon as necessary., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:macie2, x-aws-signingName:macie2, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/macie2-2020-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/macie2/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6763], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-01-01: { added:2020-07-10T08:57:08.681Z, info:{ version:2020-01-01, x-release:v4, title:Amazon Macie 2, description:Amazon Macie is a fully managed data security and data privacy service that uses machine learning and pattern matching to discover and protect your sensitive data in AWS. Macie automates the discovery of sensitive data, such as PII and intellectual property, to provide you with insight into the data that your organization stores in AWS. Macie also provides an inventory of your Amazon S3 buckets, which it continually monitors for you. If Macie detects sensitive data or potential data access issues, it generates detailed findings for you to review and act upon as necessary., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:h..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/macie2/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/macie2/2020-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:macie2: DataRow\">amazonaws.com:macie2</span>", children: [6729, 6730, 6764], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\npreferred: 2020-01-01\nversions: { 2020-01-01:{ added:2020-07-10T08:57:08.681Z, info:{ version:2020-01-01, x-release:v4, title:Amazon Macie 2, description:Amazon Macie is a fully managed data security and data privacy service that uses machine learning and pattern matching to discover and protect your sensitive data in AWS. Macie automates the discovery of sensitive data, such as PII and intellectual property, to provide you with insight into the data that your organization stores in AWS. Macie also provides an inventory of your Amazon S3 buckets, which it continually monitors for you. If Macie detects sensitive data or potential data access issues, it generates detailed findings for you to review and act upon as necessary., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, l... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Managed Blockchain"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p/> <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p> <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> do not apply to Ethereum.</p> <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are similarly indicated.</p>\"><p/> <p>Amazon Managed Blockchain is <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6773, 6774], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6777, 6778, 6779, 6780], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6782, 6783], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["managedblockchain"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["managedblockchain"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410368, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6789], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6769, 6770, 6771, 6772, 6775, 6776, 6781, 6784, 6785, 6786, 6787, 6788, 6790, 6791, 6792], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-24\nx-release: v4\ntitle: Amazon Managed Blockchain\ndescription: <p/> <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p> <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> do not apply to Ethereum.</p> <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are similarly indicated.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: managedblockchain\nx-aws-signingName: managedblockchain\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/managedblockchain/\">https://docs.aws.amazon.com/managedbl<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6794, 6795], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/managedblockchain/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T18:54:51.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-24: DataRow\">2018-09-24</span>", children: [6768, 6793, 6796, 6797, 6798, 6799, 6800], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-24, x-release:v4, title:Amazon Managed Blockchain, description:<p/> <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p> <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> do not apply to Ethereum.</p> <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are similarly indicated.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:managedblockchain, x-aws-signingName:managedblockchain, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/managedblockchain-2018-09-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/managedblockchain/ }\nupdated: 2020-03-25T18:54:51.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6801], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-24: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-24, x-release:v4, title:Amazon Managed Blockchain, description:<p/> <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p> <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> do not apply to Ethereum.</p> <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the context of a particular framework are simil..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/managedblockchain/ }, updated:2020-03-25T18:54:51.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/managedblockchain/2018-09-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:managedblockchain: DataRow\">amazonaws.com:managedblockchain</span>", children: [6766, 6767, 6802], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-24\nversions: { 2018-09-24:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-24, x-release:v4, title:Amazon Managed Blockchain, description:<p/> <p>Amazon Managed Blockchain is a fully managed service for creating and managing blockchain networks using open-source frameworks. Blockchain allows you to build applications where multiple parties can securely and transparently run transactions and share data without the need for a trusted, central authority.</p> <p>Managed Blockchain supports the Hyperledger Fabric and Ethereum open-source frameworks. Because of fundamental differences between the frameworks, some API actions or data types may only apply in the context of one framework and not the other. For example, actions related to Hyperledger Fabric network members such as <code>CreateMember</code> and <code>DeleteMember</code> do not apply to Ethereum.</p> <p>The description for each action indicates the framework or frameworks to which it applies. Data types and properties that apply only in the cont... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-17"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-17"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Marketplace Catalog Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace. </p> <p>You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.</p>\"><p>Catalog API actions allow you to m<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6811, 6812], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6815, 6816, 6817, 6818], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6820, 6821], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["marketplace-catalog"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["aws-marketplace"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410369, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6827], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6807, 6808, 6809, 6810, 6813, 6814, 6819, 6822, 6823, 6824, 6825, 6826, 6828, 6829, 6830], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-17\nx-release: v4\ntitle: AWS Marketplace Catalog Service\ndescription: <p>Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace. </p> <p>You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: marketplace-catalog\nx-aws-signingName: aws-marketplace\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-17<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/marketplace/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6832, 6833], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/marketplace/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-17: DataRow\">2018-09-17</span>", children: [6806, 6831, 6834, 6835, 6836, 6837, 6838], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-17, x-release:v4, title:AWS Marketplace Catalog Service, description:<p>Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace. </p> <p>You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:marketplace-catalog, x-aws-signingName:aws-marketplace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/marketplace-catalog-2018-09-17.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6839], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-17: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-17, x-release:v4, title:AWS Marketplace Catalog Service, description:<p>Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace. </p> <p>You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:marketplace-catalog, x-aws-signingName:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/marketplace-catalog/2018-09-17/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-17: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:marketplace-catalog: DataRow\">amazonaws.com:marketplace-catalog</span>", children: [6804, 6805, 6840], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-17\nversions: { 2018-09-17:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-17, x-release:v4, title:AWS Marketplace Catalog Service, description:<p>Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace. </p> <p>You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Marketplace Commerce Analytics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Provides AWS Marketplace business intelligence data on-demand.\">Provides AWS Marketplace business int<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6849, 6850], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6853, 6854, 6855, 6856], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6858, 6859], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["marketplacecommerceanalytics"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["marketplacecommerceanalytics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410370, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6865], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6845, 6846, 6847, 6848, 6851, 6852, 6857, 6860, 6861, 6862, 6863, 6864, 6866, 6867, 6868], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-07-01\nx-release: v4\ntitle: AWS Marketplace Commerce Analytics\ndescription: Provides AWS Marketplace business intelligence data on-demand.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: marketplacecommerceanalytics\nx-aws-signingName: marketplacecommerceanalytics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/marketplacecommerceanalytics/\">https://docs.aws.amazon.com/marketpla<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6870, 6871], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/marketplacecommerceanalytics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-07-01: DataRow\">2015-07-01</span>", children: [6844, 6869, 6872, 6873, 6874, 6875, 6876], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-07-01, x-release:v4, title:AWS Marketplace Commerce Analytics, description:Provides AWS Marketplace business intelligence data on-demand., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:marketplacecommerceanalytics, x-aws-signingName:marketplacecommerceanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/marketplacecommerceanalytics-2015-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplacecommerceanalytics/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6877], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-07-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-01, x-release:v4, title:AWS Marketplace Commerce Analytics, description:Provides AWS Marketplace business intelligence data on-demand., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:marketplacecommerceanalytics, x-aws-signingName:marketplacecommerceanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/marketplacecommerceanalytics-2015-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/dev..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplacecommerceanalytics/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/marketplacecommerceanalytics/2015-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:marketplacecommerceanalytics: DataRow\">amazonaws.com:marketplacecommerceanalytics</span>", children: [6842, 6843, 6878], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-07-01\nversions: { 2015-07-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-07-01, x-release:v4, title:AWS Marketplace Commerce Analytics, description:Provides AWS Marketplace business intelligence data on-demand., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:marketplacecommerceanalytics, x-aws-signingName:marketplacecommerceanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/marketplacecommerceanalytics-2015-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:h... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS MediaConnect"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API for AWS Elemental MediaConnect"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6887, 6888], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6891, 6892, 6893, 6894], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6896, 6897], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediaconnect"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediaconnect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410371, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6903], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6883, 6884, 6885, 6886, 6889, 6890, 6895, 6898, 6899, 6900, 6901, 6902, 6904, 6905, 6906], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-14\nx-release: v4\ntitle: AWS MediaConnect\ndescription: API for AWS Elemental MediaConnect\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediaconnect\nx-aws-signingName: mediaconnect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mediaconnect/\">https://docs.aws.amazon.com/mediaconn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6908, 6909], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediaconnect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-07T20:59:17.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-14: DataRow\">2018-11-14</span>", children: [6882, 6907, 6910, 6911, 6912, 6913, 6914], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-14, x-release:v4, title:AWS MediaConnect, description:API for AWS Elemental MediaConnect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconnect, x-aws-signingName:mediaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconnect-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediaconnect/ }\nupdated: 2020-04-07T20:59:17.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6915], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-14, x-release:v4, title:AWS MediaConnect, description:API for AWS Elemental MediaConnect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconnect, x-aws-signingName:mediaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconnect-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediaconnect/ }, updated:2020-04-07T20:59:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediaconnect/2018-11-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediaconnect: DataRow\">amazonaws.com:mediaconnect</span>", children: [6880, 6881, 6916], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-14\nversions: { 2018-11-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-14, x-release:v4, title:AWS MediaConnect, description:API for AWS Elemental MediaConnect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconnect, x-aws-signingName:mediaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconnect-2018-11-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-c... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-08-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-08-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaConvert"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaConvert"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6925, 6926], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6929, 6930, 6931, 6932], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6934, 6935], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediaconvert"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediaconvert"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410372, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6941], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6921, 6922, 6923, 6924, 6927, 6928, 6933, 6936, 6937, 6938, 6939, 6940, 6942, 6943, 6944], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-08-29\nx-release: v4\ntitle: AWS Elemental MediaConvert\ndescription: AWS Elemental MediaConvert\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediaconvert\nx-aws-signingName: mediaconvert\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-08-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mediaconvert/\">https://docs.aws.amazon.com/mediaconv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6946, 6947], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediaconvert/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-08-29: DataRow\">2017-08-29</span>", children: [6920, 6945, 6948, 6949, 6950, 6951, 6952], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-08-29, x-release:v4, title:AWS Elemental MediaConvert, description:AWS Elemental MediaConvert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconvert, x-aws-signingName:mediaconvert, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconvert-2017-08-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediaconvert/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6953], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-08-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-29, x-release:v4, title:AWS Elemental MediaConvert, description:AWS Elemental MediaConvert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconvert, x-aws-signingName:mediaconvert, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconvert-2017-08-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediaconvert/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediaconvert/2017-08-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-08-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediaconvert: DataRow\">amazonaws.com:mediaconvert</span>", children: [6918, 6919, 6954], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-08-29\nversions: { 2017-08-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-29, x-release:v4, title:AWS Elemental MediaConvert, description:AWS Elemental MediaConvert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediaconvert, x-aws-signingName:mediaconvert, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediaconvert-2017-08-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaLive"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API for AWS Elemental MediaLive"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [6963, 6964], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [6967, 6968, 6969, 6970], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [6972, 6973], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["medialive"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["medialive"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410373, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [6979], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6959, 6960, 6961, 6962, 6965, 6966, 6971, 6974, 6975, 6976, 6977, 6978, 6980, 6981, 6982], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-14\nx-release: v4\ntitle: AWS Elemental MediaLive\ndescription: API for AWS Elemental MediaLive\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: medialive\nx-aws-signingName: medialive\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/medialive/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [6984, 6985], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/medialive/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-28T19:55:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-14: DataRow\">2017-10-14</span>", children: [6958, 6983, 6986, 6987, 6988, 6989, 6990], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-14, x-release:v4, title:AWS Elemental MediaLive, description:API for AWS Elemental MediaLive, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:medialive, x-aws-signingName:medialive, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/medialive-2017-10-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/medialive/ }\nupdated: 2020-04-28T19:55:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [6991], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-14, x-release:v4, title:AWS Elemental MediaLive, description:API for AWS Elemental MediaLive, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:medialive, x-aws-signingName:medialive, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/medialive-2017-10-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/medialive/ }, updated:2020-04-28T19:55:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/medialive/2017-10-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:medialive: DataRow\">amazonaws.com:medialive</span>", children: [6956, 6957, 6992], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-14\nversions: { 2017-10-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-14, x-release:v4, title:AWS Elemental MediaLive, description:API for AWS Elemental MediaLive, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:medialive, x-aws-signingName:medialive, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/medialive-2017-10-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-catego... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaPackage"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaPackage"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7001, 7002], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7005, 7006, 7007, 7008], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7010, 7011], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediapackage"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediapackage"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410374, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7017], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [6997, 6998, 6999, 7000, 7003, 7004, 7009, 7012, 7013, 7014, 7015, 7016, 7018, 7019, 7020], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-12\nx-release: v4\ntitle: AWS Elemental MediaPackage\ndescription: AWS Elemental MediaPackage\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediapackage\nx-aws-signingName: mediapackage\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mediapackage/\">https://docs.aws.amazon.com/mediapack<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7022, 7023], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediapackage/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-12: DataRow\">2017-10-12</span>", children: [6996, 7021, 7024, 7025, 7026, 7027, 7028], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-12, x-release:v4, title:AWS Elemental MediaPackage, description:AWS Elemental MediaPackage, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage, x-aws-signingName:mediapackage, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-2017-10-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediapackage/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7029], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-12: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-12, x-release:v4, title:AWS Elemental MediaPackage, description:AWS Elemental MediaPackage, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage, x-aws-signingName:mediapackage, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-2017-10-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediapackage/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediapackage/2017-10-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediapackage: DataRow\">amazonaws.com:mediapackage</span>", children: [6994, 6995, 7030], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-12\nversions: { 2017-10-12:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-12, x-release:v4, title:AWS Elemental MediaPackage, description:AWS Elemental MediaPackage, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage, x-aws-signingName:mediapackage, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-2017-10-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaPackage VOD"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaPackage VOD"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7039, 7040], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7043, 7044, 7045, 7046], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7048, 7049], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediapackage-vod"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediapackage-vod"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410375, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7055], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7035, 7036, 7037, 7038, 7041, 7042, 7047, 7050, 7051, 7052, 7053, 7054, 7056, 7057, 7058], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-07\nx-release: v4\ntitle: AWS Elemental MediaPackage VOD\ndescription: AWS Elemental MediaPackage VOD\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediapackage-vod\nx-aws-signingName: mediapackage-vod\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mediapackage-vod/\">https://docs.aws.amazon.com/mediapack<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7060, 7061], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediapackage-vod/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-07: DataRow\">2018-11-07</span>", children: [7034, 7059, 7062, 7063, 7064, 7065, 7066], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-07, x-release:v4, title:AWS Elemental MediaPackage VOD, description:AWS Elemental MediaPackage VOD, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage-vod, x-aws-signingName:mediapackage-vod, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-vod-2018-11-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediapackage-vod/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7067], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-07, x-release:v4, title:AWS Elemental MediaPackage VOD, description:AWS Elemental MediaPackage VOD, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage-vod, x-aws-signingName:mediapackage-vod, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-vod-2018-11-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud]..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediapackage-vod/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediapackage-vod/2018-11-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediapackage-vod: DataRow\">amazonaws.com:mediapackage-vod</span>", children: [7032, 7033, 7068], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-07\nversions: { 2018-11-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-07, x-release:v4, title:AWS Elemental MediaPackage VOD, description:AWS Elemental MediaPackage VOD, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediapackage-vod, x-aws-signingName:mediapackage-vod, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediapackage-vod-2018-11-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaStore"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects. \">An AWS Elemental MediaStore container<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7077, 7078], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7081, 7082, 7083, 7084], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7086, 7087], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediastore"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediastore"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410376, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7093], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7073, 7074, 7075, 7076, 7079, 7080, 7085, 7088, 7089, 7090, 7091, 7092, 7094, 7095, 7096], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-01\nx-release: v4\ntitle: AWS Elemental MediaStore\ndescription: An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediastore\nx-aws-signingName: mediastore\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mediastore/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7098, 7099], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediastore/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-31T20:14:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-01: DataRow\">2017-09-01</span>", children: [7072, 7097, 7100, 7101, 7102, 7103, 7104], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore, description:An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediastore/ }\nupdated: 2020-03-31T20:14:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7105], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore, description:An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediastore/ }, updated:2020-03-31T20:14:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediastore/2017-09-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediastore: DataRow\">amazonaws.com:mediastore</span>", children: [7070, 7071, 7106], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-01\nversions: { 2017-09-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore, description:An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiC... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-28T16:03:46.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-28T16:03:46.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Elemental MediaStore Data Plane"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore.\">An AWS Elemental MediaStore asset is <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7115, 7116], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7119, 7120, 7121, 7122], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7124, 7125], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediastore-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediastore"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410377, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7131], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7111, 7112, 7113, 7114, 7117, 7118, 7123, 7126, 7127, 7128, 7129, 7130, 7132, 7133, 7134], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-01\nx-release: v4\ntitle: AWS Elemental MediaStore Data Plane\ndescription: An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediastore-data\nx-aws-signingName: mediastore\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mediastore/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7136, 7137], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediastore/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-01: DataRow\">2017-09-01</span>", children: [7110, 7135, 7138, 7139, 7140, 7141, 7142], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-28T16:03:46.000Z\ninfo: { version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore Data Plane, description:An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore-data, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-data-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediastore/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-28T16:03:46.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7143], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-01: { added:2017-11-28T16:03:46.000Z, info:{ version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore Data Plane, description:An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore-data, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-data-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external },..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediastore/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediastore-data/2017-09-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediastore-data: DataRow\">amazonaws.com:mediastore-data</span>", children: [7108, 7109, 7144], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-28T16:03:46.000Z\npreferred: 2017-09-01\nversions: { 2017-09-01:{ added:2017-11-28T16:03:46.000Z, info:{ version:2017-09-01, x-release:v4, title:AWS Elemental MediaStore Data Plane, description:An AWS Elemental MediaStore asset is an object, similar to an object in the Amazon S3 service. Objects are the fundamental entities that are stored in AWS Elemental MediaStore., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediastore-data, x-aws-signingName:mediastore, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediastore-data-2017-09-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-28T16:03:46.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-04-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-04-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS MediaTailor"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p> <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>\"><p>Use the AWS Elemental MediaTailor <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7153, 7154], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7157, 7158, 7159, 7160], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7162, 7163], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mediatailor"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mediatailor"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410378, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7169], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7149, 7150, 7151, 7152, 7155, 7156, 7161, 7164, 7165, 7166, 7167, 7168, 7170, 7171, 7172], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-04-23\nx-release: v4\ntitle: AWS MediaTailor\ndescription: <p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p> <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mediatailor\nx-aws-signingName: mediatailor\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-04-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mediatailor/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7174, 7175], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mediatailor/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-04-23: DataRow\">2018-04-23</span>", children: [7148, 7173, 7176, 7177, 7178, 7179, 7180], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-04-23, x-release:v4, title:AWS MediaTailor, description:<p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p> <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mediatailor, x-aws-signingName:mediatailor, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mediatailor-2018-04-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediatailor/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7181], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-04-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-23, x-release:v4, title:AWS MediaTailor, description:<p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p> <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mediatailor/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mediatailor/2018-04-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-04-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mediatailor: DataRow\">amazonaws.com:mediatailor</span>", children: [7146, 7147, 7182], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-04-23\nversions: { 2018-04-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-23, x-release:v4, title:AWS MediaTailor, description:<p>Use the AWS Elemental MediaTailor SDKs and CLI to configure scalable ad insertion and linear channels. With MediaTailor, you can assemble existing content into a linear stream and serve targeted ads to viewers while maintaining broadcast quality in over-the-top (OTT) video applications. For information about using the service, including detailed information about the settings covered in this guide, see the <a href="https://docs.aws.amazon.com/mediatailor/latest/ug/">AWS Elemental MediaTailor User Guide</a>.</p> <p>Through the SDKs and the CLI you manage AWS Elemental MediaTailor configurations and channels the same as you do through the console. For example, you specify ad insertion behavior and mapping information for the origin server and the ad decision server (ADS).</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, bac... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-01-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-01-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWSMarketplace Metering"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/iam-user-policy-for-aws-marketplace-actions.html">AWS Marketing metering and entitlement API permissions</a> in the <i>AWS Marketplace Seller Guide.</i> </p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance or a container running on EKS or ECS.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called from a software-as-a-service (SaaS) application.</p> </li> </ul> <p> <b>Accepting New Customers</b> </p> <ul> <li> <p> <i>ResolveCustomer</i>- Called by a SaaS application during the registration process. When a buyer visits your website during the registration process, the buyer submits a Registration Token through the browser. The Registration Token is resolved through this API to obtain a CustomerIdentifier and Product Code.</p> </li> </ul> <p> <b>Entitlement and Metering for Paid Container Products</b> </p> <ul> <li> <p> Paid container software products sold through AWS Marketplace must integrate with the AWS Marketplace Metering Service and call the RegisterUsage operation for software entitlement and metering. Free and BYOL products for Amazon ECS or Amazon EKS aren't required to call RegisterUsage, but you can do so if you want to receive usage data in your seller reports. For more information on using the RegisterUsage operation, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/container-based-products.html">Container-Based Products</a>. </p> </li> </ul> <p>BatchMeterUsage API calls are captured by AWS CloudTrail. You can use Cloudtrail to verify that the SaaS metering records that you sent are accurate by searching for records with the eventName of BatchMeterUsage. You can also use CloudTrail to audit records over time. For more information, see the <i> <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-concepts.html">AWS CloudTrail User Guide</a> </i>.</p>\"><fullname>AWS Marketplace Metering Se<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7191, 7192], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7195, 7196, 7197, 7198], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7200, 7201], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["meteringmarketplace"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["aws-marketplace"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410379, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7207], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7187, 7188, 7189, 7190, 7193, 7194, 7199, 7202, 7203, 7204, 7205, 7206, 7208, 7209, 7210], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-01-14\nx-release: v4\ntitle: AWSMarketplace Metering\ndescription: <fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/iam-user-policy-for-aws-marketplace-actions.html">AWS Marketing metering and entitlement API permissions</a> in the <i>AWS Marketplace Seller Guide.</i> </p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance or a container running on EKS or ECS.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called from a software-as-a-service (SaaS) application.</p> </li> </ul> <p> <b>Accepting New Customers</b> </p> <ul> <li> <p> <i>ResolveCustomer</i>- Called by a SaaS application during the registration process. When a buyer visits your website during the registration process, the buyer submits a Registration Token through the browser. The Registration Token is resolved through this API to obtain a CustomerIdentifier and Product Code.</p> </li> </ul> <p> <b>Entitlement and Metering for Paid Container Products</b> </p> <ul> <li> <p> Paid container software products sold through AWS Marketplace must integrate with the AWS Marketplace Metering Service and call the RegisterUsage operation for software entitlement and metering. Free and BYOL products for Amazon ECS or Amazon EKS aren't required to call RegisterUsage, but you can do so if you want to receive usage data in your seller reports. For more information on using the RegisterUsage operation, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/container-based-products.html">Container-Based Products</a>. </p> </li> </ul> <p>BatchMeterUsage API calls are captured by AWS CloudTrail. You can use Cloudtrail to verify that the SaaS metering records that you sent are accurate by searching for records with the eventName of BatchMeterUsage. You can also use CloudTrail to audit records over time. For more information, see the <i> <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-concepts.html">AWS CloudTrail User Guide</a> </i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: meteringmarketplace\nx-aws-signingName: aws-marketplace\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-01-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/marketplace/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7212, 7213], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/marketplace/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-01-14: DataRow\">2016-01-14</span>", children: [7186, 7211, 7214, 7215, 7216, 7217, 7218], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-01-14, x-release:v4, title:AWSMarketplace Metering, description:<fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/iam-user-policy-for-aws-marketplace-actions.html">AWS Marketing metering and entitlement API permissions</a> in the <i>AWS Marketplace Seller Guide.</i> </p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance or a container running on EKS or ECS.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called from a software-as-a-service (SaaS) application.</p> </li> </ul> <p> <b>Accepting New Customers</b> </p> <ul> <li> <p> <i..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:meteringmarketplace, x-aws-signingName:aws-marketplace, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/meteringmarketplace-2016-01-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7219], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-01-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-01-14, x-release:v4, title:AWSMarketplace Metering, description:<fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/iam-user-policy-for-aws-marketplace-actions.html">AWS Marketing metering and entitlement API permissions</a> in the <i>AWS Marketplace Seller Guide.</i> </p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance or a container running on EKS or ECS.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called from a software-as-a-service (SaaS) applic..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/marketplace/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/meteringmarketplace/2016-01-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-01-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:meteringmarketplace: DataRow\">amazonaws.com:meteringmarketplace</span>", children: [7184, 7185, 7220], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-01-14\nversions: { 2016-01-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-01-14, x-release:v4, title:AWSMarketplace Metering, description:<fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/marketplace/latest/userguide/iam-user-policy-for-aws-marketplace-actions.html">AWS Marketing metering and entitlement API permissions</a> in the <i>AWS Marketplace Seller Guide.</i> </p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance or a container running on EKS or ECS.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called fro... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-02-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-02-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Application Migration Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Application Migration Service service.\">The Application Migration Service ser<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7229, 7230], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7233, 7234, 7235, 7236], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7238, 7239], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mgn"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mgn"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410380, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7245], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7225, 7226, 7227, 7228, 7231, 7232, 7237, 7240, 7241, 7242, 7243, 7244, 7246, 7247, 7248], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-02-26\nx-release: v4\ntitle: Application Migration Service\ndescription: The Application Migration Service service.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mgn\nx-aws-signingName: mgn\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-02-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mgn/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7250, 7251], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mgn/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-02-26: DataRow\">2020-02-26</span>", children: [7224, 7249, 7252, 7253, 7254, 7255], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-02-26, x-release:v4, title:Application Migration Service, description:The Application Migration Service service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mgn, x-aws-signingName:mgn, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mgn-2020-02-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mgn/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7256], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-02-26: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-02-26, x-release:v4, title:Application Migration Service, description:The Application Migration Service service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mgn, x-aws-signingName:mgn, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mgn-2020-02-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mgn/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mgn/2020-02-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-02-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mgn: DataRow\">amazonaws.com:mgn</span>", children: [7222, 7223, 7257], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-02-26\nversions: { 2020-02-26:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-02-26, x-release:v4, title:Application Migration Service, description:The Application Migration Service service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mgn, x-aws-signingName:mgn, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mgn-2020-02-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categor... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Migration Hub Config"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.</p> <ul> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>If you call a write API outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You can call <code>GetHomeRegion</code> action to obtain the account's Migration Hub home region.</p> </li> </ul> <p>For specific API usage, see the sections that follow in this AWS Migration Hub Home Region API reference. </p>\"><p>The AWS Migration Hub home region <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7266, 7267], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7270, 7271, 7272, 7273], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7275, 7276], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["migrationhub-config"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mgh"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410381, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7282], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7262, 7263, 7264, 7265, 7268, 7269, 7274, 7277, 7278, 7279, 7280, 7281, 7283, 7284, 7285], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-06-30\nx-release: v4\ntitle: AWS Migration Hub Config\ndescription: <p>The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.</p> <ul> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>If you call a write API outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You can call <code>GetHomeRegion</code> action to obtain the account's Migration Hub home region.</p> </li> </ul> <p>For specific API usage, see the sections that follow in this AWS Migration Hub Home Region API reference. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: migrationhub-config\nx-aws-signingName: mgh\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-06-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/migrationhub-config/\">https://docs.aws.amazon.com/migration<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7287, 7288], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/migrationhub-config/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-09T06:28:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-06-30: DataRow\">2019-06-30</span>", children: [7261, 7286, 7289, 7290, 7291, 7292, 7293], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-06-30, x-release:v4, title:AWS Migration Hub Config, description:<p>The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.</p> <ul> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>If you call a write API outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You can call <code>GetHomeRegion</code> action to obtain the account's Migration Hub home region.</p> </li> </ul> <p>For specific API usage, see the sections that follow in this AWS Migration Hub Home Region API reference. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:migrationhub-config, x-aws-signingName:mgh, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/migrationhub-config-2019-06-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/migrationhub-config/ }\nupdated: 2020-04-09T06:28:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7294], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-30, x-release:v4, title:AWS Migration Hub Config, description:<p>The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.</p> <ul> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>If you call a write API outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You can call <code>GetHomeRegion</code> action to obtain the account's Migration Hub home region.</p> </li> </ul> <p>For specific API usage, see the sections that follow in this AWS Migration Hub Home Region..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/migrationhub-config/ }, updated:2020-04-09T06:28:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/migrationhub-config/2019-06-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:migrationhub-config: DataRow\">amazonaws.com:migrationhub-config</span>", children: [7259, 7260, 7295], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-06-30\nversions: { 2019-06-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-30, x-release:v4, title:AWS Migration Hub Config, description:<p>The AWS Migration Hub home region APIs are available specifically for working with your Migration Hub home region. You can use these APIs to determine a home region, as well as to create and work with controls that describe the home region.</p> <ul> <li> <p>You must make API calls for write actions (create, notify, associate, disassociate, import, or put) while in your home region, or a <code>HomeRegionNotSetException</code> error is returned.</p> </li> <li> <p>API calls for read actions (list, describe, stop, and delete) are permitted outside of your home region.</p> </li> <li> <p>If you call a write API outside the home region, an <code>InvalidInputException</code> is returned.</p> </li> <li> <p>You can call <code>GetHomeRegion</code> action to obtain the account's Migration Hub home region.</p> </li> </ul> <p>For specific API usage, see the sections that follo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Mobile"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" AWS Mobile Service provides mobile app and website developers with capabilities required to configure AWS resources and bootstrap their developer desktop projects with the necessary SDKs, constants, tools and samples to make use of those resources. \"> AWS Mobile Service provides mobile a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7304, 7305], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7308, 7309, 7310, 7311], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7313, 7314], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mobile"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["AWSMobileHubService"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410382, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7320], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7300, 7301, 7302, 7303, 7306, 7307, 7312, 7315, 7316, 7317, 7318, 7319, 7321, 7322, 7323], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-01\nx-release: v4\ntitle: AWS Mobile\ndescription: AWS Mobile Service provides mobile app and website developers with capabilities required to configure AWS resources and bootstrap their developer desktop projects with the necessary SDKs, constants, tools and samples to make use of those resources. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mobile\nx-aws-signingName: AWSMobileHubService\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mobile/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7325, 7326], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mobile/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-01: DataRow\">2017-07-01</span>", children: [7299, 7324, 7327, 7328, 7329, 7330, 7331], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-01, x-release:v4, title:AWS Mobile, description: AWS Mobile Service provides mobile app and website developers with capabilities required to configure AWS resources and bootstrap their developer desktop projects with the necessary SDKs, constants, tools and samples to make use of those resources. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobile, x-aws-signingName:AWSMobileHubService, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobile-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mobile/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7332], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-01, x-release:v4, title:AWS Mobile, description: AWS Mobile Service provides mobile app and website developers with capabilities required to configure AWS resources and bootstrap their developer desktop projects with the necessary SDKs, constants, tools and samples to make use of those resources. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobile, x-aws-signingName:AWSMobileHubService, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobile-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, versio..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mobile/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mobile/2017-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mobile: DataRow\">amazonaws.com:mobile</span>", children: [7297, 7298, 7333], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-01\nversions: { 2017-07-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-01, x-release:v4, title:AWS Mobile, description: AWS Mobile Service provides mobile app and website developers with capabilities required to configure AWS resources and bootstrap their developer desktop projects with the necessary SDKs, constants, tools and samples to make use of those resources. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobile, x-aws-signingName:AWSMobileHubService, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobile-2017-07-01.normal.json, converter:{ url:https:/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-06-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-06-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Mobile Analytics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale.\">Amazon Mobile Analytics is a service <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7342, 7343], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7346, 7347, 7348, 7349], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7351, 7352], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mobileanalytics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410383, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7357], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7338, 7339, 7340, 7341, 7344, 7345, 7350, 7353, 7354, 7355, 7356, 7358, 7359, 7360], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-06-05\nx-release: v4\ntitle: Amazon Mobile Analytics\ndescription: Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mobileanalytics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-06-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mobileanalytics/\">https://docs.aws.amazon.com/mobileana<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7362, 7363], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mobileanalytics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-06-05: DataRow\">2014-06-05</span>", children: [7337, 7361, 7364, 7365, 7366, 7367, 7368], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-06-05, x-release:v4, title:Amazon Mobile Analytics, description:Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobileanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobileanalytics-2014-06-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mobileanalytics/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7369], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-06-05: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-05, x-release:v4, title:Amazon Mobile Analytics, description:Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobileanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobileanalytics-2014-06-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mobileanalytics/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mobileanalytics/2014-06-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-06-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mobileanalytics: DataRow\">amazonaws.com:mobileanalytics</span>", children: [7335, 7336, 7370], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-06-05\nversions: { 2014-06-05:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-06-05, x-release:v4, title:Amazon Mobile Analytics, description:Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mobileanalytics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mobileanalytics-2014-06-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/dev... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lex Model Building V2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7379, 7380], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7383, 7384, 7385, 7386], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7388, 7389], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["models.lex.v2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lex"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410384, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7395], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7375, 7376, 7377, 7378, 7381, 7382, 7387, 7390, 7391, 7392, 7393, 7394, 7396, 7397, 7398], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-07\nx-release: v4\ntitle: Amazon Lex Model Building V2\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: models.lex.v2\nx-aws-signingName: lex\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/models-v2-lex/\">https://docs.aws.amazon.com/models-v2<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7400, 7401], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/models-v2-lex/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-07: DataRow\">2020-08-07</span>", children: [7374, 7399, 7402, 7403, 7404, 7405], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-08-07, x-release:v4, title:Amazon Lex Model Building V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:models.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/models.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/models-v2-lex/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7406], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-07: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-07, x-release:v4, title:Amazon Lex Model Building V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:models.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/models.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/models-v2-lex/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/models.lex.v2/2020-08-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:models.lex.v2: DataRow\">amazonaws.com:models.lex.v2</span>", children: [7372, 7373, 7407], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-08-07\nversions: { 2020-08-07:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-07, x-release:v4, title:Amazon Lex Model Building V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:models.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/models.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-pref... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-08-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-08-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon CloudWatch"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metrics, which are the variables you want to measure for your resources and applications.</p> <p>CloudWatch alarms send notifications or automatically change the resources you are monitoring based on rules that you define. For example, you can monitor the CPU usage and disk reads and writes of your Amazon EC2 instances. Then, use this data to determine whether you should launch additional instances to handle increased load. You can also use this data to stop under-used instances to save money.</p> <p>In addition to monitoring the built-in metrics that come with Amazon Web Services, you can monitor your own custom metrics. With CloudWatch, you gain system-wide visibility into resource utilization, application performance, and operational health.</p>\"><p>Amazon CloudWatch monitors your Am<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7416, 7417], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7420, 7421, 7422, 7423], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7425, 7426], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["monitoring"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410385, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7431], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7412, 7413, 7414, 7415, 7418, 7419, 7424, 7427, 7428, 7429, 7430, 7432, 7433, 7434], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-08-01\nx-release: v4\ntitle: Amazon CloudWatch\ndescription: <p>Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metrics, which are the variables you want to measure for your resources and applications.</p> <p>CloudWatch alarms send notifications or automatically change the resources you are monitoring based on rules that you define. For example, you can monitor the CPU usage and disk reads and writes of your Amazon EC2 instances. Then, use this data to determine whether you should launch additional instances to handle increased load. You can also use this data to stop under-used instances to save money.</p> <p>In addition to monitoring the built-in metrics that come with Amazon Web Services, you can monitor your own custom metrics. With CloudWatch, you gain system-wide visibility into resource utilization, application performance, and operational health.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: monitoring\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-08-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/monitoring/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7436, 7437], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/monitoring/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-02T18:31:21.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-08-01: DataRow\">2010-08-01</span>", children: [7411, 7435, 7438, 7439, 7440, 7441, 7442], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2010-08-01, x-release:v4, title:Amazon CloudWatch, description:<p>Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metrics, which are the variables you want to measure for your resources and applications.</p> <p>CloudWatch alarms send notifications or automatically change the resources you are monitoring based on rules that you define. For example, you can monitor the CPU usage and disk reads and writes of your Amazon EC2 instances. Then, use this data to determine whether you should launch additional instances to handle increased load. You can also use this data to stop under-used instances to save money.</p> <p>In addition to monitoring the built-in metrics that come with Amazon Web Services, you can monitor your own custom metrics. With CloudWatch, you gain system-wide visibility into resource utilization, application performance, and operational health.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:monitoring, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/monitoring-2010-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/monitoring/ }\nupdated: 2020-04-02T18:31:21.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7443], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-08-01: { added:2017-05-02T07:59:53.000Z, info:{ version:2010-08-01, x-release:v4, title:Amazon CloudWatch, description:<p>Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metrics, which are the variables you want to measure for your resources and applications.</p> <p>CloudWatch alarms send notifications or automatically change the resources you are monitoring based on rules that you define. For example, you can monitor the CPU usage and disk reads and writes of your Amazon EC2 instances. Then, use this data to determine whether you should launch additional instances to handle increased load. You can also use this data to stop under-used instances to save money.</p> <p>In addition to monitoring the built-in metrics that come with Amazon Web Services, you can monitor your own custom metrics. With CloudWatch, you gain system-wide visibility into resource utilization, application performan..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/monitoring/ }, updated:2020-04-02T18:31:21.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/monitoring/2010-08-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-08-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:monitoring: DataRow\">amazonaws.com:monitoring</span>", children: [7409, 7410, 7444], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2010-08-01\nversions: { 2010-08-01:{ added:2017-05-02T07:59:53.000Z, info:{ version:2010-08-01, x-release:v4, title:Amazon CloudWatch, description:<p>Amazon CloudWatch monitors your Amazon Web Services (Amazon Web Services) resources and the applications you run on Amazon Web Services in real time. You can use CloudWatch to collect and track metrics, which are the variables you want to measure for your resources and applications.</p> <p>CloudWatch alarms send notifications or automatically change the resources you are monitoring based on rules that you define. For example, you can monitor the CPU usage and disk reads and writes of your Amazon EC2 instances. Then, use this data to determine whether you should launch additional instances to handle increased load. You can also use this data to stop under-used instances to save money.</p> <p>In addition to monitoring the built-in metrics that come with Amazon Web Services, you can monitor your own custom metrics. With CloudWatch, you gain system-wide visibility into reso... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmazonMQ"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols.\">Amazon MQ is a managed message broker<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7453, 7454], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7457, 7458, 7459, 7460], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7462, 7463], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mq"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mq"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410386, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7469], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7449, 7450, 7451, 7452, 7455, 7456, 7461, 7464, 7465, 7466, 7467, 7468, 7470, 7471, 7472], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-27\nx-release: v4\ntitle: AmazonMQ\ndescription: Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mq\nx-aws-signingName: mq\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/mq/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7474, 7475], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mq/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-27: DataRow\">2017-11-27</span>", children: [7448, 7473, 7476, 7477, 7478, 7479, 7480], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-27, x-release:v4, title:AmazonMQ, description:Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mq, x-aws-signingName:mq, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mq-2017-11-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mq/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7481], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AmazonMQ, description:Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mq, x-aws-signingName:mq, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mq-2017-11-27.normal.json, converter:{ url:https://gi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mq/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mq/2017-11-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mq: DataRow\">amazonaws.com:mq</span>", children: [7446, 7447, 7482], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-27\nversions: { 2017-11-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AmazonMQ, description:Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mq, x-aws-signingName:mq, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mq-2017-11-27.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-01-17"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-01-17"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Mechanical Turk"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Mechanical Turk API Reference</fullname>\"><fullname>Amazon Mechanical Turk API <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7491, 7492], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7495, 7496, 7497, 7498], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7500, 7501], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mturk-requester"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410387, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7506], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7487, 7488, 7489, 7490, 7493, 7494, 7499, 7502, 7503, 7504, 7505, 7507, 7508, 7509], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-01-17\nx-release: v4\ntitle: Amazon Mechanical Turk\ndescription: <fullname>Amazon Mechanical Turk API Reference</fullname>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mturk-requester\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-01-17<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/mturk-requester/\">https://docs.aws.amazon.com/mturk-req<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7511, 7512], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/mturk-requester/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-01-17: DataRow\">2017-01-17</span>", children: [7486, 7510, 7513, 7514, 7515, 7516, 7517], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-01-17, x-release:v4, title:Amazon Mechanical Turk, description:<fullname>Amazon Mechanical Turk API Reference</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mturk-requester, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mturk-requester-2017-01-17.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mturk-requester/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7518], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-01-17: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-17, x-release:v4, title:Amazon Mechanical Turk, description:<fullname>Amazon Mechanical Turk API Reference</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mturk-requester, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mturk-requester-2017-01-17.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/mturk-requester/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mturk-requester/2017-01-17/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-01-17: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mturk-requester: DataRow\">amazonaws.com:mturk-requester</span>", children: [7484, 7485, 7519], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-01-17\nversions: { 2017-01-17:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-17, x-release:v4, title:Amazon Mechanical Turk, description:<fullname>Amazon Mechanical Turk API Reference</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mturk-requester, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mturk-requester-2017-01-17.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisgur... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmazonMWAA"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p><fullname>Amazon Managed Workflows for Apache Airflow</fullname> <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What Is Amazon MWAA?</a>.</p></p>\"><p><fullname>Amazon Managed Workflows<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7528, 7529], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7532, 7533, 7534, 7535], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7537, 7538], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mwaa"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["airflow"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410388, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7544], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7524, 7525, 7526, 7527, 7530, 7531, 7536, 7539, 7540, 7541, 7542, 7543, 7545, 7546, 7547], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-01\nx-release: v4\ntitle: AmazonMWAA\ndescription: <p><fullname>Amazon Managed Workflows for Apache Airflow</fullname> <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What Is Amazon MWAA?</a>.</p></p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: mwaa\nx-aws-signingName: airflow\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/airflow/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7549, 7550], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/airflow/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-01: DataRow\">2020-07-01</span>", children: [7523, 7548, 7551, 7552, 7553, 7554], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-07-01, x-release:v4, title:AmazonMWAA, description:<p><fullname>Amazon Managed Workflows for Apache Airflow</fullname> <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What Is Amazon MWAA?</a>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mwaa, x-aws-signingName:airflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mwaa-2020-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/airflow/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7555], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-01, x-release:v4, title:AmazonMWAA, description:<p><fullname>Amazon Managed Workflows for Apache Airflow</fullname> <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What Is Amazon MWAA?</a>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mwaa, x-aws-signingName:airflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mwaa-2020-07-01.normal.json, converter:{ ur..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/airflow/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/mwaa/2020-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:mwaa: DataRow\">amazonaws.com:mwaa</span>", children: [7521, 7522, 7556], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-07-01\nversions: { 2020-07-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-01, x-release:v4, title:AmazonMWAA, description:<p><fullname>Amazon Managed Workflows for Apache Airflow</fullname> <p>This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see <a href="https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html">What Is Amazon MWAA?</a>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:mwaa, x-aws-signingName:airflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/mwaa... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-06-05T19:10:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-06-05T19:10:27.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Neptune"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Neptune</fullname> <p>Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.</p> <p>This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can use to manage Amazon Neptune. Note that Amazon Neptune is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.</p>\"><fullname>Amazon Neptune</fullname> <<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7565, 7566], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7569, 7570, 7571, 7572], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7574, 7575], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["neptune"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["rds"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410389, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7581], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7561, 7562, 7563, 7564, 7567, 7568, 7573, 7576, 7577, 7578, 7579, 7580, 7582, 7583, 7584], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-10-31\nx-release: v4\ntitle: Amazon Neptune\ndescription: <fullname>Amazon Neptune</fullname> <p>Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.</p> <p>This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can use to manage Amazon Neptune. Note that Amazon Neptune is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: neptune\nx-aws-signingName: rds\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-10-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/rds/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7586, 7587], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/rds/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-10-31: DataRow\">2014-10-31</span>", children: [7560, 7585, 7588, 7589, 7590, 7591, 7592], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-06-05T19:10:27.000Z\ninfo: { version:2014-10-31, x-release:v4, title:Amazon Neptune, description:<fullname>Amazon Neptune</fullname> <p>Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.</p> <p>This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can use to manage Amazon Neptune. Note that Amazon Neptune is asynchronous, which means that some interfaces migh..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:neptune, x-aws-signingName:rds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/neptune-2014-10-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-06-05T19:10:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7593], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-10-31: { added:2018-06-05T19:10:27.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon Neptune, description:<fullname>Amazon Neptune</fullname> <p>Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.</p> <p>This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can use to manage Amazon Neptune. Note that..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/neptune/2014-10-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-10-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:neptune: DataRow\">amazonaws.com:neptune</span>", children: [7558, 7559, 7594], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-06-05T19:10:27.000Z\npreferred: 2014-10-31\nversions: { 2014-10-31:{ added:2018-06-05T19:10:27.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon Neptune, description:<fullname>Amazon Neptune</fullname> <p>Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.</p> <p>This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-06-05T19:10:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Network Firewall"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. </p> <ul> <li> <p>The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-apis.html">AWS APIs</a>. </p> <p>To access Network Firewall using the REST API endpoint: <code>https://network-firewall.&lt;region&gt;.amazonaws.com </code> </p> </li> <li> <p>Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> </li> <li> <p>For descriptions of Network Firewall features, including and step-by-step instructions on how to use them through the Network Firewall console, see the <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/">Network Firewall Developer Guide</a>.</p> </li> </ul> <p>Network Firewall is a stateful, managed, network firewall and intrusion detection and prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network Firewall, you can filter traffic at the perimeter of your VPC. This includes filtering traffic going to and coming from an internet gateway, NAT gateway, or over VPN or AWS Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source intrusion detection system (IDS) engine. For information about Suricata, see the <a href="https://suricata-ids.org/">Suricata website</a>.</p> <p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways. The following are just a few examples: </p> <ul> <li> <p>Allow domains or IP addresses for known AWS service endpoints, such as Amazon S3, and block all other forms of traffic.</p> </li> <li> <p>Use custom lists of known bad domains to limit the types of domain names that your applications can access.</p> </li> <li> <p>Perform deep packet inspection on traffic entering or leaving your VPC.</p> </li> <li> <p>Use stateful protocol detection to filter protocols like HTTPS, regardless of the port used.</p> </li> </ul> <p>To enable Network Firewall for your VPCs, you perform steps in both Amazon VPC and in Network Firewall. For information about using Amazon VPC, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/">Amazon VPC User Guide</a>.</p> <p>To start using Network Firewall, do the following: </p> <ol> <li> <p>(Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC. </p> </li> <li> <p>In Amazon VPC, in each Availability Zone where you want to have a firewall endpoint, create a subnet for the sole use of Network Firewall. </p> </li> <li> <p>In Network Firewall, create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have. </p> </li> <li> <p>In Network Firewall, create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior. </p> </li> <li> <p>In Network Firewall, create a firewall and specify your new firewall policy and VPC subnets. Network Firewall creates a firewall endpoint in each subnet that you specify, with the behavior that's defined in the firewall policy.</p> </li> <li> <p>In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints.</p> </li> </ol>\"><p>This is the API Reference for AWS <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7603, 7604], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7607, 7608, 7609, 7610], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7612, 7613], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["network-firewall"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["network-firewall"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410390, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7619], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7599, 7600, 7601, 7602, 7605, 7606, 7611, 7614, 7615, 7616, 7617, 7618, 7620, 7621, 7622], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-12\nx-release: v4\ntitle: AWS Network Firewall\ndescription: <p>This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. </p> <ul> <li> <p>The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-apis.html">AWS APIs</a>. </p> <p>To access Network Firewall using the REST API endpoint: <code>https://network-firewall.&lt;region&gt;.amazonaws.com </code> </p> </li> <li> <p>Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> </li> <li> <p>For descriptions of Network Firewall features, including and step-by-step instructions on how to use them through the Network Firewall console, see the <a href="https://docs.aws.amazon.com/network-firewall/latest/developerguide/">Network Firewall Developer Guide</a>.</p> </li> </ul> <p>Network Firewall is a stateful, managed, network firewall and intrusion detection and prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network Firewall, you can filter traffic at the perimeter of your VPC. This includes filtering traffic going to and coming from an internet gateway, NAT gateway, or over VPN or AWS Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source intrusion detection system (IDS) engine. For information about Suricata, see the <a href="https://suricata-ids.org/">Suricata website</a>.</p> <p>You can use Network Firewall to monitor and protect your VPC traffic in a number of ways. The following are just a few examples: </p> <ul> <li> <p>Allow domains or IP addresses for known AWS service endpoints, such as Amazon S3, and block all other forms of traffic.</p> </li> <li> <p>Use custom lists of known bad domains to limit the types of domain names that your applications can access.</p> </li> <li> <p>Perform deep packet inspection on traffic entering or leaving your VPC.</p> </li> <li> <p>Use stateful protocol detection to filter protocols like HTTPS, regardless of the port used.</p> </li> </ul> <p>To enable Network Firewall for your VPCs, you perform steps in both Amazon VPC and in Network Firewall. For information about using Amazon VPC, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/">Amazon VPC User Guide</a>.</p> <p>To start using Network Firewall, do the following: </p> <ol> <li> <p>(Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC. </p> </li> <li> <p>In Amazon VPC, in each Availability Zone where you want to have a firewall endpoint, create a subnet for the sole use of Network Firewall. </p> </li> <li> <p>In Network Firewall, create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have. </p> </li> <li> <p>In Network Firewall, create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior. </p> </li> <li> <p>In Network Firewall, create a firewall and specify your new firewall policy and VPC subnets. Network Firewall creates a firewall endpoint in each subnet that you specify, with the behavior that's defined in the firewall policy.</p> </li> <li> <p>In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints.</p> </li> </ol>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: network-firewall\nx-aws-signingName: network-firewall\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/network-firewall/\">https://docs.aws.amazon.com/network-f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7624, 7625], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/network-firewall/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-12: DataRow\">2020-11-12</span>", children: [7598, 7623, 7626, 7627, 7628, 7629], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-11-12, x-release:v4, title:AWS Network Firewall, description:<p>This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. </p> <ul> <li> <p>The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-apis.html">AWS APIs</a>. </p> <p>To access Network Firewall using the REST API endpoint: <code>https://network-firewall.&lt;region&gt;.amazonaws.com </code> </p> </li> <li> <p>Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> </li> <li> <p>For descriptions of Network Firewall features, including and step-by-step instructions on how to use them through the Network Firewa..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:network-firewall, x-aws-signingName:network-firewall, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/network-firewall-2020-11-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/network-firewall/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7630], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-12: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-12, x-release:v4, title:AWS Network Firewall, description:<p>This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. </p> <ul> <li> <p>The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-apis.html">AWS APIs</a>. </p> <p>To access Network Firewall using the REST API endpoint: <code>https://network-firewall.&lt;region&gt;.amazonaws.com </code> </p> </li> <li> <p>Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> </li> <li> <p>For descriptions of Network Firewall features, including..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/network-firewall/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/network-firewall/2020-11-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:network-firewall: DataRow\">amazonaws.com:network-firewall</span>", children: [7596, 7597, 7631], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-11-12\nversions: { 2020-11-12:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-11-12, x-release:v4, title:AWS Network Firewall, description:<p>This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. </p> <ul> <li> <p>The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-apis.html">AWS APIs</a>. </p> <p>To access Network Firewall using the REST API endpoint: <code>https://network-firewall.&lt;region&gt;.amazonaws.com </code> </p> </li> <li> <p>Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">AWS SDKs</a>.</p> </li> <li> <p>For descriptions ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-07-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-07-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Network Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways.</p> <p>The Network Manager APIs are supported in the US West (Oregon) Region only. You must specify the <code>us-west-2</code> Region in all requests made to Network Manager.</p>\"><p>Transit Gateway Network Manager (N<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7640, 7641], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7644, 7645, 7646, 7647], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7649, 7650], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["networkmanager"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["networkmanager"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410391, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7656], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7636, 7637, 7638, 7639, 7642, 7643, 7648, 7651, 7652, 7653, 7654, 7655, 7657, 7658, 7659], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-07-05\nx-release: v4\ntitle: AWS Network Manager\ndescription: <p>Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways.</p> <p>The Network Manager APIs are supported in the US West (Oregon) Region only. You must specify the <code>us-west-2</code> Region in all requests made to Network Manager.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: networkmanager\nx-aws-signingName: networkmanager\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-07-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/networkmanager/\">https://docs.aws.amazon.com/networkma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7661, 7662], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/networkmanager/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-07-05: DataRow\">2019-07-05</span>", children: [7635, 7660, 7663, 7664, 7665, 7666, 7667], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-07-05, x-release:v4, title:AWS Network Manager, description:<p>Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways.</p> <p>The Network Manager APIs are supported in the US West (Oregon) Region only. You must specify the <code>us-west-2</code> Region in all requests made to Network Manager.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:networkmanager, x-aws-signingName:networkmanager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/networkmanager-2019-07-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/networkmanager/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7668], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-07-05: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-05, x-release:v4, title:AWS Network Manager, description:<p>Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways.</p> <p>The Network Manager APIs are supported in the US West (Oregon) Region only. You must specify the <code>us-west-2</code> Region in all requests made to Network Manager.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:networkmanager, x-aws-signingName:networkmanager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubuser..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/networkmanager/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/networkmanager/2019-07-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-07-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:networkmanager: DataRow\">amazonaws.com:networkmanager</span>", children: [7633, 7634, 7669], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-07-05\nversions: { 2019-07-05:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-05, x-release:v4, title:AWS Network Manager, description:<p>Transit Gateway Network Manager (Network Manager) enables you to create a global network, in which you can monitor your AWS and on-premises networks that are built around transit gateways.</p> <p>The Network Manager APIs are supported in the US West (Oregon) Region only. You must specify the <code>us-west-2</code> Region in all requests made to Network Manager.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:networkmanager, x-aws-signingName:networkmanager, x-origin:[1 x 4] { contentType:appli... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AmazonNimbleStudio"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7677, 7678], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7681, 7682, 7683, 7684], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7686, 7687], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nimble"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["nimble"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410392, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7693], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7674, 7675, 7676, 7679, 7680, 7685, 7688, 7689, 7690, 7691, 7692, 7694, 7695, 7696], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-01\nx-release: v4\ntitle: AmazonNimbleStudio\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: nimble\nx-aws-signingName: nimble\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/nimble/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7698, 7699], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/nimble/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-01: DataRow\">2020-08-01</span>", children: [7673, 7697, 7700, 7701, 7702, 7703], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-08-01, x-release:v4, title:AmazonNimbleStudio, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:nimble, x-aws-signingName:nimble, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/nimble-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/nimble/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7704], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-01: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-01, x-release:v4, title:AmazonNimbleStudio, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:nimble, x-aws-signingName:nimble, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/nimble-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/nimble/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/nimble/2020-08-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:nimble: DataRow\">amazonaws.com:nimble</span>", children: [7671, 7672, 7705], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-08-01\nversions: { 2020-08-01:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-01, x-release:v4, title:AmazonNimbleStudio, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:nimble, x-aws-signingName:nimble, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/nimble-2020-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ descriptio... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-02-18"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-02-18"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS OpsWorks"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks Stacks API Reference</i>. This guide provides descriptions, syntax, and usage examples for AWS OpsWorks Stacks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks Stacks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks Stacks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS CLI</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/opsworks/AWSOpsWorksClient.html">AWS SDK for Java</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sdkfornet/latest/apidocs/html/N_Amazon_OpsWorks.htm">AWS SDK for .NET</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.OpsWorks.OpsWorksClient.html">AWS SDK for PHP 2</a> </p> </li> <li> <p> <a href="http://docs.aws.amazon.com/sdkforruby/api/">AWS SDK for Ruby</a> </p> </li> <li> <p> <a href="http://aws.amazon.com/documentation/sdkforjavascript/">AWS SDK for Node.js</a> </p> </li> <li> <p> <a href="http://docs.pythonboto.org/en/latest/ref/opsworks.html">AWS SDK for Python(Boto)</a> </p> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks Stacks supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Stacks can only be accessed or managed within the endpoint in which they are created.</p> <ul> <li> <p>opsworks.us-east-1.amazonaws.com</p> </li> <li> <p>opsworks.us-east-2.amazonaws.com</p> </li> <li> <p>opsworks.us-west-1.amazonaws.com</p> </li> <li> <p>opsworks.us-west-2.amazonaws.com</p> </li> <li> <p>opsworks.ca-central-1.amazonaws.com (API only; not available in the AWS console)</p> </li> <li> <p>opsworks.eu-west-1.amazonaws.com</p> </li> <li> <p>opsworks.eu-west-2.amazonaws.com</p> </li> <li> <p>opsworks.eu-west-3.amazonaws.com</p> </li> <li> <p>opsworks.eu-central-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-northeast-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-northeast-2.amazonaws.com</p> </li> <li> <p>opsworks.ap-south-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-southeast-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-southeast-2.amazonaws.com</p> </li> <li> <p>opsworks.sa-east-1.amazonaws.com</p> </li> </ul> <p> <b>Chef Versions</b> </p> <p>When you call <a>CreateStack</a>, <a>CloneStack</a>, or <a>UpdateStack</a> we recommend you use the <code>ConfigurationManager</code> parameter to specify the Chef version. The recommended and default value for Linux stacks is currently 12. Windows stacks use Chef 12.2. For more information, see <a href="https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-chef11.html">Chef Versions</a>.</p> <note> <p>You can specify Chef 12, 11.10, or 11.4 for your Linux stack. We recommend migrating your existing Linux stacks to Chef 12 as soon as possible.</p> </note>\"><fullname>AWS OpsWorks</fullname> <p><span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7714, 7715], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7718, 7719, 7720, 7721], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7723, 7724], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["opsworks"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410393, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7729], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7710, 7711, 7712, 7713, 7716, 7717, 7722, 7725, 7726, 7727, 7728, 7730, 7731, 7732], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-02-18\nx-release: v4\ntitle: AWS OpsWorks\ndescription: <fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks Stacks API Reference</i>. This guide provides descriptions, syntax, and usage examples for AWS OpsWorks Stacks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks Stacks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks Stacks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS CLI</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/opsworks/AWSOpsWorksClient.html">AWS SDK for Java</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sdkfornet/latest/apidocs/html/N_Amazon_OpsWorks.htm">AWS SDK for .NET</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/aws-sdk-php-2/latest/class-Aws.OpsWorks.OpsWorksClient.html">AWS SDK for PHP 2</a> </p> </li> <li> <p> <a href="http://docs.aws.amazon.com/sdkforruby/api/">AWS SDK for Ruby</a> </p> </li> <li> <p> <a href="http://aws.amazon.com/documentation/sdkforjavascript/">AWS SDK for Node.js</a> </p> </li> <li> <p> <a href="http://docs.pythonboto.org/en/latest/ref/opsworks.html">AWS SDK for Python(Boto)</a> </p> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks Stacks supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Stacks can only be accessed or managed within the endpoint in which they are created.</p> <ul> <li> <p>opsworks.us-east-1.amazonaws.com</p> </li> <li> <p>opsworks.us-east-2.amazonaws.com</p> </li> <li> <p>opsworks.us-west-1.amazonaws.com</p> </li> <li> <p>opsworks.us-west-2.amazonaws.com</p> </li> <li> <p>opsworks.ca-central-1.amazonaws.com (API only; not available in the AWS console)</p> </li> <li> <p>opsworks.eu-west-1.amazonaws.com</p> </li> <li> <p>opsworks.eu-west-2.amazonaws.com</p> </li> <li> <p>opsworks.eu-west-3.amazonaws.com</p> </li> <li> <p>opsworks.eu-central-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-northeast-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-northeast-2.amazonaws.com</p> </li> <li> <p>opsworks.ap-south-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-southeast-1.amazonaws.com</p> </li> <li> <p>opsworks.ap-southeast-2.amazonaws.com</p> </li> <li> <p>opsworks.sa-east-1.amazonaws.com</p> </li> </ul> <p> <b>Chef Versions</b> </p> <p>When you call <a>CreateStack</a>, <a>CloneStack</a>, or <a>UpdateStack</a> we recommend you use the <code>ConfigurationManager</code> parameter to specify the Chef version. The recommended and default value for Linux stacks is currently 12. Windows stacks use Chef 12.2. For more information, see <a href="https://docs.aws.amazon.com/opsworks/latest/userguide/workingcookbook-chef11.html">Chef Versions</a>.</p> <note> <p>You can specify Chef 12, 11.10, or 11.4 for your Linux stack. We recommend migrating your existing Linux stacks to Chef 12 as soon as possible.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: opsworks\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-02-18<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/opsworks/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7734, 7735], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/opsworks/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-02-18: DataRow\">2013-02-18</span>", children: [7709, 7733, 7736, 7737, 7738, 7739, 7740], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-02-18, x-release:v4, title:AWS OpsWorks, description:<fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks Stacks API Reference</i>. This guide provides descriptions, syntax, and usage examples for AWS OpsWorks Stacks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks Stacks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks Stacks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS CLI</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/opsw..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:opsworks, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/opsworks-2013-02-18.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/opsworks/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7741], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-02-18: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-02-18, x-release:v4, title:AWS OpsWorks, description:<fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks Stacks API Reference</i>. This guide provides descriptions, syntax, and usage examples for AWS OpsWorks Stacks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks Stacks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks Stacks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS CLI</a> </p> </li> <li> <p> <a href="https://docs...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/opsworks/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/opsworks/2013-02-18/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-02-18: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:opsworks: DataRow\">amazonaws.com:opsworks</span>", children: [7707, 7708, 7742], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-02-18\nversions: { 2013-02-18:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-02-18, x-release:v4, title:AWS OpsWorks, description:<fullname>AWS OpsWorks</fullname> <p>Welcome to the <i>AWS OpsWorks Stacks API Reference</i>. This guide provides descriptions, syntax, and usage examples for AWS OpsWorks Stacks actions and data types, including common parameters and error codes. </p> <p>AWS OpsWorks Stacks is an application management service that provides an integrated experience for overseeing the complete application lifecycle. For information about this product, go to the <a href="http://aws.amazon.com/opsworks/">AWS OpsWorks</a> details page. </p> <p> <b>SDKs and CLI</b> </p> <p>The most common way to use the AWS OpsWorks Stacks API is by using the AWS Command Line Interface (CLI) or by using one of the AWS SDKs to implement applications in your preferred language. For more information, see:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS CLI</a> </p... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS OpsWorks CM"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.</p> </li> <li> <p> <b>Engine</b>: The engine is the specific configuration manager that you want to use. Valid values in this release include <code>ChefAutomate</code> and <code>Puppet</code>.</p> </li> <li> <p> <b>Backup</b>: This is an application-level backup of the data that the configuration manager stores. AWS OpsWorks CM creates an S3 bucket for backups when you launch the first server. A backup maintains a snapshot of a server's configuration-related attributes at the time the backup starts.</p> </li> <li> <p> <b>Events</b>: Events are always related to a server. Events are written during server creation, when health checks run, when backups are created, when system maintenance is performed, etc. When you delete a server, the server's events are also deleted.</p> </li> <li> <p> <b>Account attributes</b>: Every account has attributes that are assigned in the AWS OpsWorks CM database. These attributes store information about configuration limits (servers, backups, etc.) and your customer account. </p> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks CM supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Your servers can only be accessed or managed within the endpoint in which they are created.</p> <ul> <li> <p>opsworks-cm.us-east-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-east-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-northeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-central-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-west-1.amazonaws.com</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/opsworks-service.html">AWS OpsWorks endpoints and quotas</a> in the AWS General Reference.</p> <p> <b>Throttling limits</b> </p> <p>All API operations allow for five requests per second with a burst of 10 requests per second.</p>\"><fullname>AWS OpsWorks CM</fullname> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7751, 7752], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7755, 7756, 7757, 7758], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7760, 7761], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["opsworkscm"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["opsworks-cm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410394, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7767], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7747, 7748, 7749, 7750, 7753, 7754, 7759, 7762, 7763, 7764, 7765, 7766, 7768, 7769, 7770], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-01\nx-release: v4\ntitle: AWS OpsWorks CM\ndescription: <fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.</p> </li> <li> <p> <b>Engine</b>: The engine is the specific configuration manager that you want to use. Valid values in this release include <code>ChefAutomate</code> and <code>Puppet</code>.</p> </li> <li> <p> <b>Backup</b>: This is an application-level backup of the data that the configuration manager stores. AWS OpsWorks CM creates an S3 bucket for backups when you launch the first server. A backup maintains a snapshot of a server's configuration-related attributes at the time the backup starts.</p> </li> <li> <p> <b>Events</b>: Events are always related to a server. Events are written during server creation, when health checks run, when backups are created, when system maintenance is performed, etc. When you delete a server, the server's events are also deleted.</p> </li> <li> <p> <b>Account attributes</b>: Every account has attributes that are assigned in the AWS OpsWorks CM database. These attributes store information about configuration limits (servers, backups, etc.) and your customer account. </p> </li> </ul> <p> <b>Endpoints</b> </p> <p>AWS OpsWorks CM supports the following endpoints, all HTTPS. You must connect to one of the following endpoints. Your servers can only be accessed or managed within the endpoint in which they are created.</p> <ul> <li> <p>opsworks-cm.us-east-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-east-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.us-west-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-northeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.ap-southeast-2.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-central-1.amazonaws.com</p> </li> <li> <p>opsworks-cm.eu-west-1.amazonaws.com</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/opsworks-service.html">AWS OpsWorks endpoints and quotas</a> in the AWS General Reference.</p> <p> <b>Throttling limits</b> </p> <p>All API operations allow for five requests per second with a burst of 10 requests per second.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: opsworkscm\nx-aws-signingName: opsworks-cm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/opsworks-cm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7772, 7773], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/opsworks-cm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-18T14:31:19.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-01: DataRow\">2016-11-01</span>", children: [7746, 7771, 7774, 7775, 7776, 7777, 7778], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-01, x-release:v4, title:AWS OpsWorks CM, description:<fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.</p> </li> <li> <p> <b>Engine</b>: The engine is the specific configuration manager that ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:opsworkscm, x-aws-signingName:opsworks-cm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/opsworkscm-2016-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/opsworks-cm/ }\nupdated: 2020-04-18T14:31:19.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7779], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-01, x-release:v4, title:AWS OpsWorks CM, description:<fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run until they are deleted.</p> </li> <li> <p..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/opsworks-cm/ }, updated:2020-04-18T14:31:19.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/opsworkscm/2016-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:opsworkscm: DataRow\">amazonaws.com:opsworkscm</span>", children: [7744, 7745, 7780], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-01\nversions: { 2016-11-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-01, x-release:v4, title:AWS OpsWorks CM, description:<fullname>AWS OpsWorks CM</fullname> <p>AWS OpsWorks for configuration management (CM) is a service that runs and manages configuration management servers. You can use AWS OpsWorks CM to create and manage AWS OpsWorks for Chef Automate and AWS OpsWorks for Puppet Enterprise servers, and add or remove nodes for the servers to manage.</p> <p> <b>Glossary of terms</b> </p> <ul> <li> <p> <b>Server</b>: A configuration management server that can be highly-available. The configuration management server runs on an Amazon Elastic Compute Cloud (EC2) instance, and may use various other AWS services, such as Amazon Relational Database Service (RDS) and Elastic Load Balancing. A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks CM, you do not start or stop servers. After you create servers, they continue to run un... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Organizations"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an <i>organization</i> and centrally manage your accounts and their resources.</p> <p>This guide provides descriptions of the Organizations operations. For more information about using this service, see the <a href="http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html">AWS Organizations User Guide</a>.</p> <p> <b>Support and feedback for AWS Organizations</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:feedback-awsorganizations@amazon.com">feedback-awsorganizations@amazon.com</a> or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=219">AWS Organizations support forum</a>. For more information about the AWS support forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>Endpoint to call When using the AWS CLI or the AWS SDK</b> </p> <p>For the current release of Organizations, specify the <code>us-east-1</code> region for all AWS API and AWS CLI calls made from the commercial AWS Regions outside of China. If calling from one of the AWS Regions in China, then specify <code>cn-northwest-1</code>. You can do this in the AWS CLI by using these parameters and commands:</p> <ul> <li> <p>Use the following parameter with each command to specify both the endpoint and its region:</p> <p> <code>--endpoint-url https://organizations.us-east-1.amazonaws.com</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>--endpoint-url https://organizations.cn-northwest-1.amazonaws.com.cn</code> <i>(from AWS Regions in China)</i> </p> </li> <li> <p>Use the default endpoint, but configure your default region with this command:</p> <p> <code>aws configure set default.region us-east-1</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>aws configure set default.region cn-northwest-1</code> <i>(from AWS Regions in China)</i> </p> </li> <li> <p>Use the following parameter with each command to specify the endpoint:</p> <p> <code>--region us-east-1</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>--region cn-northwest-1</code> <i>(from AWS Regions in China)</i> </p> </li> </ul> <p> <b>Recording API Requests</b> </p> <p>AWS Organizations supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by AWS CloudTrail, you can determine which requests the Organizations service received, who made the request and when, and so on. For more about AWS Organizations and its support for AWS CloudTrail, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_incident-response.html#orgs_cloudtrail-integration">Logging AWS Organizations Events with AWS CloudTrail</a> in the <i>AWS Organizations User Guide</i>. To learn more about AWS CloudTrail, including how to turn it on and find your log files, see the <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html">AWS CloudTrail User Guide</a>.</p>\"><p>AWS Organizations is a web service<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7789, 7790], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7793, 7794, 7795, 7796], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7798, 7799], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["organizations"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410395, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7804], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7785, 7786, 7787, 7788, 7791, 7792, 7797, 7800, 7801, 7802, 7803, 7805, 7806, 7807], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-28\nx-release: v4\ntitle: AWS Organizations\ndescription: <p>AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an <i>organization</i> and centrally manage your accounts and their resources.</p> <p>This guide provides descriptions of the Organizations operations. For more information about using this service, see the <a href="http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html">AWS Organizations User Guide</a>.</p> <p> <b>Support and feedback for AWS Organizations</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:feedback-awsorganizations@amazon.com">feedback-awsorganizations@amazon.com</a> or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=219">AWS Organizations support forum</a>. For more information about the AWS support forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>Endpoint to call When using the AWS CLI or the AWS SDK</b> </p> <p>For the current release of Organizations, specify the <code>us-east-1</code> region for all AWS API and AWS CLI calls made from the commercial AWS Regions outside of China. If calling from one of the AWS Regions in China, then specify <code>cn-northwest-1</code>. You can do this in the AWS CLI by using these parameters and commands:</p> <ul> <li> <p>Use the following parameter with each command to specify both the endpoint and its region:</p> <p> <code>--endpoint-url https://organizations.us-east-1.amazonaws.com</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>--endpoint-url https://organizations.cn-northwest-1.amazonaws.com.cn</code> <i>(from AWS Regions in China)</i> </p> </li> <li> <p>Use the default endpoint, but configure your default region with this command:</p> <p> <code>aws configure set default.region us-east-1</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>aws configure set default.region cn-northwest-1</code> <i>(from AWS Regions in China)</i> </p> </li> <li> <p>Use the following parameter with each command to specify the endpoint:</p> <p> <code>--region us-east-1</code> <i>(from commercial AWS Regions outside of China)</i> </p> <p>or</p> <p> <code>--region cn-northwest-1</code> <i>(from AWS Regions in China)</i> </p> </li> </ul> <p> <b>Recording API Requests</b> </p> <p>AWS Organizations supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by AWS CloudTrail, you can determine which requests the Organizations service received, who made the request and when, and so on. For more about AWS Organizations and its support for AWS CloudTrail, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_incident-response.html#orgs_cloudtrail-integration">Logging AWS Organizations Events with AWS CloudTrail</a> in the <i>AWS Organizations User Guide</i>. To learn more about AWS CloudTrail, including how to turn it on and find your log files, see the <a href="http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html">AWS CloudTrail User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: organizations\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/organizations/\">https://docs.aws.amazon.com/organizat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7809, 7810], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/organizations/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-31T20:14:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-28: DataRow\">2016-11-28</span>", children: [7784, 7808, 7811, 7812, 7813, 7814, 7815], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-28, x-release:v4, title:AWS Organizations, description:<p>AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an <i>organization</i> and centrally manage your accounts and their resources.</p> <p>This guide provides descriptions of the Organizations operations. For more information about using this service, see the <a href="http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html">AWS Organizations User Guide</a>.</p> <p> <b>Support and feedback for AWS Organizations</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:feedback-awsorganizations@amazon.com">feedback-awsorganizations@amazon.com</a> or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=219">AWS Organizations support forum</a>. For more information about the AWS support forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>Endpoint to call When using the AWS CLI or the AWS SDK</b> </p> <p>For the curre..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:organizations, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/organizations-2016-11-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/organizations/ }\nupdated: 2020-03-31T20:14:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7816], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:AWS Organizations, description:<p>AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an <i>organization</i> and centrally manage your accounts and their resources.</p> <p>This guide provides descriptions of the Organizations operations. For more information about using this service, see the <a href="http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html">AWS Organizations User Guide</a>.</p> <p> <b>Support and feedback for AWS Organizations</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:feedback-awsorganizations@amazon.com">feedback-awsorganizations@amazon.com</a> or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=219">AWS Organizations support forum</a>. For more information about the AWS support forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>Endpoin..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/organizations/ }, updated:2020-03-31T20:14:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/organizations/2016-11-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:organizations: DataRow\">amazonaws.com:organizations</span>", children: [7782, 7783, 7817], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-28\nversions: { 2016-11-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:AWS Organizations, description:<p>AWS Organizations is a web service that enables you to consolidate your multiple AWS accounts into an <i>organization</i> and centrally manage your accounts and their resources.</p> <p>This guide provides descriptions of the Organizations operations. For more information about using this service, see the <a href="http://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html">AWS Organizations User Guide</a>.</p> <p> <b>Support and feedback for AWS Organizations</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:feedback-awsorganizations@amazon.com">feedback-awsorganizations@amazon.com</a> or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=219">AWS Organizations support forum</a>. For more information about the AWS support forums, see <a href="http://forums.aws.amazon.com/help.js... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-03"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-03"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Outposts"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs.\">AWS Outposts is a fully managed servi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7826, 7827], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7830, 7831, 7832, 7833], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7835, 7836], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["outposts"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["outposts"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410396, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7842], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7822, 7823, 7824, 7825, 7828, 7829, 7834, 7837, 7838, 7839, 7840, 7841, 7843, 7844, 7845], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-03\nx-release: v4\ntitle: AWS Outposts\ndescription: AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: outposts\nx-aws-signingName: outposts\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-03<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/outposts/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7847, 7848], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/outposts/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-23T09:21:07.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-03: DataRow\">2019-12-03</span>", children: [7821, 7846, 7849, 7850, 7851, 7852, 7853], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-12-03, x-release:v4, title:AWS Outposts, description:AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:outposts, x-aws-signingName:outposts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/outposts-2019-12-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/outposts/ }\nupdated: 2020-03-23T09:21:07.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7854], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-03: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-03, x-release:v4, title:AWS Outposts, description:AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:outposts, x-aws-signingName:outposts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.git..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/outposts/ }, updated:2020-03-23T09:21:07.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/outposts/2019-12-03/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-03: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:outposts: DataRow\">amazonaws.com:outposts</span>", children: [7819, 7820, 7855], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-12-03\nversions: { 2019-12-03:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-03, x-release:v4, title:AWS Outposts, description:AWS Outposts is a fully managed service that extends AWS infrastructure, APIs, and tools to customer premises. By providing local access to AWS managed infrastructure, AWS Outposts enables customers to build and run applications on premises using the same programming interfaces as in AWS Regions, while using local compute and storage resources for lower latency and local data processing needs., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:outposts, x-aws-signingName:outposts, x-origin:[1 x 4] { contentTyp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Personalize"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers.\">Amazon Personalize is a machine learn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7864, 7865], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7868, 7869, 7870, 7871], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7873, 7874], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["personalize"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["personalize"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410397, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7880], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7860, 7861, 7862, 7863, 7866, 7867, 7872, 7875, 7876, 7877, 7878, 7879, 7881, 7882, 7883], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-22\nx-release: v4\ntitle: Amazon Personalize\ndescription: Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: personalize\nx-aws-signingName: personalize\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/personalize/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7885, 7886], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/personalize/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-18T21:34:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-22: DataRow\">2018-05-22</span>", children: [7859, 7884, 7887, 7888, 7889, 7890, 7891], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-22, x-release:v4, title:Amazon Personalize, description:Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize/ }\nupdated: 2020-03-18T21:34:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7892], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-22: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-22, x-release:v4, title:Amazon Personalize, description:Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/reg..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize/ }, updated:2020-03-18T21:34:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize/2018-05-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:personalize: DataRow\">amazonaws.com:personalize</span>", children: [7857, 7858, 7893], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-22\nversions: { 2018-05-22:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-22, x-release:v4, title:Amazon Personalize, description:Amazon Personalize is a machine learning service that makes it easy to add individualized recommendations to customers., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://por... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-03-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-03-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Personalize Events"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Personalize can consume real-time user event data, such as <i>stream</i> or <i>click</i> data, and use it for model training either alone or combined with historical data. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/recording-events.html">Recording Events</a>.\">Amazon Personalize can consume real-t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7902, 7903], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7906, 7907, 7908, 7909], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7911, 7912], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["personalize-events"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["personalize"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410398, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7918], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7898, 7899, 7900, 7901, 7904, 7905, 7910, 7913, 7914, 7915, 7916, 7917, 7919, 7920, 7921], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-03-22\nx-release: v4\ntitle: Amazon Personalize Events\ndescription: Amazon Personalize can consume real-time user event data, such as <i>stream</i> or <i>click</i> data, and use it for model training either alone or combined with historical data. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/recording-events.html">Recording Events</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: personalize-events\nx-aws-signingName: personalize\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-03-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/personalize-events/\">https://docs.aws.amazon.com/personali<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7923, 7924], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/personalize-events/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-03-22: DataRow\">2018-03-22</span>", children: [7897, 7922, 7925, 7926, 7927, 7928, 7929], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-03-22, x-release:v4, title:Amazon Personalize Events, description:Amazon Personalize can consume real-time user event data, such as <i>stream</i> or <i>click</i> data, and use it for model training either alone or combined with historical data. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/recording-events.html">Recording Events</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-events, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-events-2018-03-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize-events/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7930], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-03-22: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-03-22, x-release:v4, title:Amazon Personalize Events, description:Amazon Personalize can consume real-time user event data, such as <i>stream</i> or <i>click</i> data, and use it for model training either alone or combined with historical data. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/recording-events.html">Recording Events</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-events, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-event..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize-events/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize-events/2018-03-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-03-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:personalize-events: DataRow\">amazonaws.com:personalize-events</span>", children: [7895, 7896, 7931], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-03-22\nversions: { 2018-03-22:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-03-22, x-release:v4, title:Amazon Personalize Events, description:Amazon Personalize can consume real-time user event data, such as <i>stream</i> or <i>click</i> data, and use it for model training either alone or combined with historical data. For more information see <a href="https://docs.aws.amazon.com/personalize/latest/dg/recording-events.html">Recording Events</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-events, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-22"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-22"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Personalize Runtime"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7940, 7941], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7944, 7945, 7946, 7947], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7949, 7950], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["personalize-runtime"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["personalize"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410399, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7956], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7936, 7937, 7938, 7939, 7942, 7943, 7948, 7951, 7952, 7953, 7954, 7955, 7957, 7958, 7959], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-22\nx-release: v4\ntitle: Amazon Personalize Runtime\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: personalize-runtime\nx-aws-signingName: personalize\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-22<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/personalize-runtime/\">https://docs.aws.amazon.com/personali<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7961, 7962], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/personalize-runtime/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-04T11:33:26.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-22: DataRow\">2018-05-22</span>", children: [7935, 7960, 7963, 7964, 7965, 7966, 7967], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-05-22, x-release:v4, title:Amazon Personalize Runtime, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-runtime, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-runtime-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize-runtime/ }\nupdated: 2020-04-04T11:33:26.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [7968], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-22: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-22, x-release:v4, title:Amazon Personalize Runtime, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-runtime, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-runtime-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/personalize-runtime/ }, updated:2020-04-04T11:33:26.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/personalize-runtime/2018-05-22/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-22: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:personalize-runtime: DataRow\">amazonaws.com:personalize-runtime</span>", children: [7933, 7934, 7969], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-05-22\nversions: { 2018-05-22:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-05-22, x-release:v4, title:Amazon Personalize Runtime, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:personalize-runtime, x-aws-signingName:personalize, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/personalize-runtime-2018-05-22.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categori... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-02-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-02-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Performance Insights"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon RDS Performance Insights</fullname> <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.</p> <p>When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for AWS service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load. </p> <p>DB load is measured as Average Active Sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point decomposes overall load in relation to the requested dimensions, measured at that time point. Examples include SQL, Wait event, User, and Host.</p> <ul> <li> <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html">Amazon Aurora User Guide</a>.</p> </li> <li> <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Amazon RDS User Guide</a>.</p> </li> </ul>\"><fullname>Amazon RDS Performance Insi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [7978, 7979], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [7982, 7983, 7984, 7985], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [7987, 7988], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pi"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["pi"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410400, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [7994], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [7974, 7975, 7976, 7977, 7980, 7981, 7986, 7989, 7990, 7991, 7992, 7993, 7995, 7996, 7997], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-02-27\nx-release: v4\ntitle: AWS Performance Insights\ndescription: <fullname>Amazon RDS Performance Insights</fullname> <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.</p> <p>When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for AWS service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load. </p> <p>DB load is measured as Average Active Sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point decomposes overall load in relation to the requested dimensions, measured at that time point. Examples include SQL, Wait event, User, and Host.</p> <ul> <li> <p>To learn more about Performance Insights and Amazon Aurora DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_PerfInsights.html">Amazon Aurora User Guide</a>.</p> </li> <li> <p>To learn more about Performance Insights and Amazon RDS DB instances, go to the <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html">Amazon RDS User Guide</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: pi\nx-aws-signingName: pi\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-02-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/pi/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [7999, 8000], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/pi/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-02-27: DataRow\">2018-02-27</span>", children: [7973, 7998, 8001, 8002, 8003, 8004, 8005], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-02-27, x-release:v4, title:AWS Performance Insights, description:<fullname>Amazon RDS Performance Insights</fullname> <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.</p> <p>When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for AWS service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load. </p> <p>DB load is measured as Average Active Sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point decomposes overall load in relation to the requested dimensions, measured at that time point. Examples include SQL, Wait..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pi, x-aws-signingName:pi, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pi-2018-02-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pi/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8006], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-02-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-02-27, x-release:v4, title:AWS Performance Insights, description:<fullname>Amazon RDS Performance Insights</fullname> <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.</p> <p>When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for AWS service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load. </p> <p>DB load is measured as Average Active Sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point decomposes overall load in relation to t..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pi/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/pi/2018-02-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-02-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:pi: DataRow\">amazonaws.com:pi</span>", children: [7971, 7972, 8007], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-02-27\nversions: { 2018-02-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-02-27, x-release:v4, title:AWS Performance Insights, description:<fullname>Amazon RDS Performance Insights</fullname> <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide provides detailed information about Performance Insights data types, parameters and errors.</p> <p>When Performance Insights is enabled, the Amazon RDS Performance Insights API provides visibility into the performance of your DB instance. Amazon CloudWatch provides the authoritative source for AWS service-vended monitoring metrics. Performance Insights offers a domain-specific view of DB load. </p> <p>DB load is measured as Average Active Sessions. Performance Insights provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data for each time point in the queried time range. Each time point d... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Pinpoint"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Doc Engage API - Amazon Pinpoint API"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8016, 8017], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8020, 8021, 8022, 8023], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8025, 8026], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pinpoint"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["mobiletargeting"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410401, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8032], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8012, 8013, 8014, 8015, 8018, 8019, 8024, 8027, 8028, 8029, 8030, 8031, 8033, 8034, 8035], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-12-01\nx-release: v4\ntitle: Amazon Pinpoint\ndescription: Doc Engage API - Amazon Pinpoint API\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: pinpoint\nx-aws-signingName: mobiletargeting\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/pinpoint/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8037, 8038], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/pinpoint/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-12-01: DataRow\">2016-12-01</span>", children: [8011, 8036, 8039, 8040, 8041, 8042, 8043], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-12-01, x-release:v4, title:Amazon Pinpoint, description:Doc Engage API - Amazon Pinpoint API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pinpoint, x-aws-signingName:mobiletargeting, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pinpoint-2016-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pinpoint/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8044], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-12-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-12-01, x-release:v4, title:Amazon Pinpoint, description:Doc Engage API - Amazon Pinpoint API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pinpoint, x-aws-signingName:mobiletargeting, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pinpoint-2016-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pinpoint/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/pinpoint/2016-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:pinpoint: DataRow\">amazonaws.com:pinpoint</span>", children: [8009, 8010, 8045], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-12-01\nversions: { 2016-12-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-12-01, x-release:v4, title:Amazon Pinpoint, description:Doc Engage API - Amazon Pinpoint API, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pinpoint, x-aws-signingName:mobiletargeting, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pinpoint-2016-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-07-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-07-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Pinpoint Email Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Pinpoint Email Service</fullname> <p>Welcome to the <i>Amazon Pinpoint Email API Reference</i>. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon Pinpoint</a> is an AWS service that you can use to engage with your customers across multiple messaging channels. You can use Amazon Pinpoint to send email, SMS text messages, voice messages, and push notifications. The Amazon Pinpoint Email API provides programmatic access to options that are unique to the email channel and supplement the options provided by the Amazon Pinpoint API.</p> <p>If you're new to Amazon Pinpoint, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.html">Amazon Pinpoint Developer Guide</a>. The <i>Amazon Pinpoint Developer Guide</i> provides tutorials, code samples, and procedures that demonstrate how to use Amazon Pinpoint features programmatically and how to integrate Amazon Pinpoint functionality into mobile apps and other types of applications. The guide also provides information about key topics such as Amazon Pinpoint integration with other AWS services and the limits that apply to using the service.</p> <p>The Amazon Pinpoint Email API is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#pinpoint_region">AWS Service Endpoints</a> in the <i>Amazon Web Services General Reference</i>. To learn more about AWS Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html">Managing AWS Regions</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>In each Region, AWS maintains multiple Availability Zones. These Availability Zones are physically isolated from each other, but are united by private, low-latency, high-throughput, and highly redundant network connections. These Availability Zones enable us to provide very high levels of availability and redundancy, while also minimizing latency. To learn more about the number of Availability Zones that are available in each Region, see <a href="http://aws.amazon.com/about-aws/global-infrastructure/">AWS Global Infrastructure</a>.</p>\"><fullname>Amazon Pinpoint Email Servi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8054, 8055], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8058, 8059, 8060, 8061], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8063, 8064], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pinpoint-email"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ses"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410402, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8070], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8050, 8051, 8052, 8053, 8056, 8057, 8062, 8065, 8066, 8067, 8068, 8069, 8071, 8072, 8073], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-07-26\nx-release: v4\ntitle: Amazon Pinpoint Email Service\ndescription: <fullname>Amazon Pinpoint Email Service</fullname> <p>Welcome to the <i>Amazon Pinpoint Email API Reference</i>. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon Pinpoint</a> is an AWS service that you can use to engage with your customers across multiple messaging channels. You can use Amazon Pinpoint to send email, SMS text messages, voice messages, and push notifications. The Amazon Pinpoint Email API provides programmatic access to options that are unique to the email channel and supplement the options provided by the Amazon Pinpoint API.</p> <p>If you're new to Amazon Pinpoint, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.html">Amazon Pinpoint Developer Guide</a>. The <i>Amazon Pinpoint Developer Guide</i> provides tutorials, code samples, and procedures that demonstrate how to use Amazon Pinpoint features programmatically and how to integrate Amazon Pinpoint functionality into mobile apps and other types of applications. The guide also provides information about key topics such as Amazon Pinpoint integration with other AWS services and the limits that apply to using the service.</p> <p>The Amazon Pinpoint Email API is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#pinpoint_region">AWS Service Endpoints</a> in the <i>Amazon Web Services General Reference</i>. To learn more about AWS Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html">Managing AWS Regions</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>In each Region, AWS maintains multiple Availability Zones. These Availability Zones are physically isolated from each other, but are united by private, low-latency, high-throughput, and highly redundant network connections. These Availability Zones enable us to provide very high levels of availability and redundancy, while also minimizing latency. To learn more about the number of Availability Zones that are available in each Region, see <a href="http://aws.amazon.com/about-aws/global-infrastructure/">AWS Global Infrastructure</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: pinpoint-email\nx-aws-signingName: ses\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-07-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/email/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8075, 8076], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/email/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-07-26: DataRow\">2018-07-26</span>", children: [8049, 8074, 8077, 8078, 8079, 8080, 8081], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-07-26, x-release:v4, title:Amazon Pinpoint Email Service, description:<fullname>Amazon Pinpoint Email Service</fullname> <p>Welcome to the <i>Amazon Pinpoint Email API Reference</i>. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon Pinpoint</a> is an AWS service that you can use to engage with your customers across multiple messaging channels. You can use Amazon Pinpoint to send email, SMS text messages, voice messages, and push notifications. The Amazon Pinpoint Email API provides programmatic access to options that are unique to the email channel and supplement the options provided by the Amazon Pinpoint API.</p> <p>If you're new to Amazon Pinpoint, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.html">Amazon Pinpoint Developer Guide</a>. The <i>Amazon Pinpoint Developer Guide</i> provides tutorials, code samples, and pr..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pinpoint-email, x-aws-signingName:ses, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pinpoint-email-2018-07-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8082], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-07-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-07-26, x-release:v4, title:Amazon Pinpoint Email Service, description:<fullname>Amazon Pinpoint Email Service</fullname> <p>Welcome to the <i>Amazon Pinpoint Email API Reference</i>. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon Pinpoint</a> is an AWS service that you can use to engage with your customers across multiple messaging channels. You can use Amazon Pinpoint to send email, SMS text messages, voice messages, and push notifications. The Amazon Pinpoint Email API provides programmatic access to options that are unique to the email channel and supplement the options provided by the Amazon Pinpoint API.</p> <p>If you're new to Amazon Pinpoint, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.html">Amazon Pinpoint Developer Guide</a>..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/pinpoint-email/2018-07-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-07-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:pinpoint-email: DataRow\">amazonaws.com:pinpoint-email</span>", children: [8047, 8048, 8083], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-07-26\nversions: { 2018-07-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-07-26, x-release:v4, title:Amazon Pinpoint Email Service, description:<fullname>Amazon Pinpoint Email Service</fullname> <p>Welcome to the <i>Amazon Pinpoint Email API Reference</i>. This guide provides information about the Amazon Pinpoint Email API (version 1.0), including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon Pinpoint</a> is an AWS service that you can use to engage with your customers across multiple messaging channels. You can use Amazon Pinpoint to send email, SMS text messages, voice messages, and push notifications. The Amazon Pinpoint Email API provides programmatic access to options that are unique to the email channel and supplement the options provided by the Amazon Pinpoint API.</p> <p>If you're new to Amazon Pinpoint, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/pinpoint/latest/developerguide/welcome.ht... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-06-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-06-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Polly"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.</p>\"><p>Amazon Polly is a web service that<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8092, 8093], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8096, 8097, 8098, 8099], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8101, 8102], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["polly"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410403, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8107], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8088, 8089, 8090, 8091, 8094, 8095, 8100, 8103, 8104, 8105, 8106, 8108, 8109, 8110], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-06-10\nx-release: v4\ntitle: Amazon Polly\ndescription: <p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: polly\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-06-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/polly/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8112, 8113], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/polly/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-06-10: DataRow\">2016-06-10</span>", children: [8087, 8111, 8114, 8115, 8116, 8117, 8118], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-06-10, x-release:v4, title:Amazon Polly, description:<p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:polly, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/polly-2016-06-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/polly/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8119], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-06-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-10, x-release:v4, title:Amazon Polly, description:<p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:polly, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/polly-2016-06-10.normal.jso..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/polly/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/polly/2016-06-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-06-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:polly: DataRow\">amazonaws.com:polly</span>", children: [8085, 8086, 8120], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-06-10\nversions: { 2016-06-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-10, x-release:v4, title:Amazon Polly, description:<p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:polly, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Price List Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Web Services Price List Service API (Amazon Web Services Price List Service) is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List Service uses standardized product attributes such as <code>Location</code>, <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at the SKU level. You can use the Amazon Web Services Price List Service to build cost control and scenario planning tools, reconcile billing data, forecast future spend for budgeting purposes, and provide cost benefit analysis that compare your internal workloads with Amazon Web Services.</p> <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then <code>GetServices</code> with a service code to retreive the attribute names for that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code> to see what values are available for an attribute. With the service code and an attribute name and value, you can use <code>GetProducts</code> to find specific products that you're interested in, such as an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code> <code>volumeType</code>.</p> <p>Service Endpoint</p> <p>Amazon Web Services Price List Service API provides the following two endpoints:</p> <ul> <li> <p>https://api.pricing.us-east-1.amazonaws.com</p> </li> <li> <p>https://api.pricing.ap-south-1.amazonaws.com</p> </li> </ul>\"><p>Amazon Web Services Price List Ser<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8129, 8130], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8133, 8134, 8135, 8136], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8138, 8139], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pricing"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["pricing"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410404, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8145], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8125, 8126, 8127, 8128, 8131, 8132, 8137, 8140, 8141, 8142, 8143, 8144, 8146, 8147, 8148], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-15\nx-release: v4\ntitle: AWS Price List Service\ndescription: <p>Amazon Web Services Price List Service API (Amazon Web Services Price List Service) is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List Service uses standardized product attributes such as <code>Location</code>, <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at the SKU level. You can use the Amazon Web Services Price List Service to build cost control and scenario planning tools, reconcile billing data, forecast future spend for budgeting purposes, and provide cost benefit analysis that compare your internal workloads with Amazon Web Services.</p> <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then <code>GetServices</code> with a service code to retreive the attribute names for that service. After you have the service code and attribute names, you can use <code>GetAttributeValues</code> to see what values are available for an attribute. With the service code and an attribute name and value, you can use <code>GetProducts</code> to find specific products that you're interested in, such as an <code>AmazonEC2</code> instance, with a <code>Provisioned IOPS</code> <code>volumeType</code>.</p> <p>Service Endpoint</p> <p>Amazon Web Services Price List Service API provides the following two endpoints:</p> <ul> <li> <p>https://api.pricing.us-east-1.amazonaws.com</p> </li> <li> <p>https://api.pricing.ap-south-1.amazonaws.com</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: pricing\nx-aws-signingName: pricing\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/pricing/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8150, 8151], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/pricing/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-15: DataRow\">2017-10-15</span>", children: [8124, 8149, 8152, 8153, 8154, 8155, 8156], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-15, x-release:v4, title:AWS Price List Service, description:<p>Amazon Web Services Price List Service API (Amazon Web Services Price List Service) is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List Service uses standardized product attributes such as <code>Location</code>, <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at the SKU level. You can use the Amazon Web Services Price List Service to build cost control and scenario planning tools, reconcile billing data, forecast future spend for budgeting purposes, and provide cost benefit analysis that compare your internal workloads with Amazon Web Services.</p> <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then <code>GetServices</code> with a service code to retreive the attribute names for that service. After you have the service code and attribute names, you can use <code>GetAttribute..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:pricing, x-aws-signingName:pricing, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/pricing-2017-10-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pricing/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8157], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-15, x-release:v4, title:AWS Price List Service, description:<p>Amazon Web Services Price List Service API (Amazon Web Services Price List Service) is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List Service uses standardized product attributes such as <code>Location</code>, <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at the SKU level. You can use the Amazon Web Services Price List Service to build cost control and scenario planning tools, reconcile billing data, forecast future spend for budgeting purposes, and provide cost benefit analysis that compare your internal workloads with Amazon Web Services.</p> <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then <code>GetServices</code> with a service code to retreive the attribute names for that service. After..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pricing/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/pricing/2017-10-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:pricing: DataRow\">amazonaws.com:pricing</span>", children: [8122, 8123, 8158], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-15\nversions: { 2017-10-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-15, x-release:v4, title:AWS Price List Service, description:<p>Amazon Web Services Price List Service API (Amazon Web Services Price List Service) is a centralized and convenient way to programmatically query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List Service uses standardized product attributes such as <code>Location</code>, <code>Storage Class</code>, and <code>Operating System</code>, and provides prices at the SKU level. You can use the Amazon Web Services Price List Service to build cost control and scenario planning tools, reconcile billing data, forecast future spend for budgeting purposes, and provide cost benefit analysis that compare your internal workloads with Amazon Web Services.</p> <p>Use <code>GetServices</code> without a service code to retrieve the service codes for all AWS services, then <code>GetServices</code> with a service code to retreive the ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Proton"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p> <p>The documentation for each action shows the Query API request parameters and the XML response.</p> <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p> <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available service templates to automate their application or service deployments.</p> <p>Because administrators define the infrastructure and tooling that AWS Proton deploys and manages, they need permissions to use all of the listed API operations.</p> <p>When developers select a specific infrastructure and tooling set, AWS Proton deploys their applications. To monitor their applications that are running on AWS Proton, developers need permissions to the service <i>create</i>, <i>list</i>, <i>update</i> and <i>delete</i> API operations and the service instance <i>list</i> and <i>update</i> API operations.</p> <p>To learn more about AWS Proton administration, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/Welcome.html">AWS Proton Administrator Guide</a>.</p> <p>To learn more about deploying serverless and containerized applications on AWS Proton, see the <a href="https://docs.aws.amazon.com/proton/latest/userguide/Welcome.html">AWS Proton User Guide</a>.</p> <p> <b>Ensuring Idempotency</b> </p> <p>When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the operation occurs multiple times. This means that you might create more resources than you intended.</p> <p> <i>Idempotency</i> ensures that an API request action completes no more than one time. With an idempotent request, if the original request action completes successfully, any subsequent retries complete successfully without performing any further actions. However, the result might contain updated information, such as the current creation status.</p> <p>The following lists of APIs are grouped according to methods that ensure idempotency.</p> <p> <b>Idempotent create APIs with a client token</b> </p> <p>The API actions in this list support idempotency with the use of a <i>client token</i>. The corresponding AWS CLI commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you <i>don't</i> reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a default client token is automatically provided by SDKs.</p> <p>Given a request action that has succeeded:</p> <p>If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.</p> <p>If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p> <p>Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is created.</p> <p>If the original resource is deleted and you retry the request, a new resource is created.</p> <p>Idempotent create APIs with a client token:</p> <ul> <li> <p>CreateEnvironmentTemplateVersion</p> </li> <li> <p>CreateServiceTemplateVersion</p> </li> <li> <p>CreateEnvironmentAccountConnection</p> </li> </ul> <p> <b>Idempotent create APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>If you retry the request with an API from this group, and the original resource <i>hasn't</i> been modified, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.</p> <p>If the original resource has been modified, the retry throws a <code>ConflictException</code>.</p> <p>If you retry with different input parameters, the retry throws a <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p> <p>Idempotent create APIs:</p> <ul> <li> <p>CreateEnvironmentTemplate</p> </li> <li> <p>CreateServiceTemplate</p> </li> <li> <p>CreateEnvironment</p> </li> <li> <p>CreateService</p> </li> </ul> <p> <b>Idempotent delete APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.</p> <p>If you retry and the resource doesn't exist, the response is empty.</p> <p>In both cases, the retry succeeds.</p> <p>Idempotent delete APIs:</p> <ul> <li> <p>DeleteEnvironmentTemplate</p> </li> <li> <p>DeleteEnvironmentTemplateVersion</p> </li> <li> <p>DeleteServiceTemplate</p> </li> <li> <p>DeleteServiceTemplateVersion</p> </li> <li> <p>DeleteEnvironmentAccountConnection</p> </li> </ul> <p> <b>Asynchronous idempotent delete APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>If you retry the request with an API from this group, if the original request delete operation status is <code>DELETE_IN_PROGRESS</code>, the retry returns the resource detail data in the response without performing any further actions.</p> <p>If the original request delete operation is complete, a retry returns an empty response.</p> <p>Asynchronous idempotent delete APIs:</p> <ul> <li> <p>DeleteEnvironment</p> </li> <li> <p>DeleteService</p> </li> </ul>\"><p>This is the AWS Proton Service API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8167, 8168], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8171, 8172, 8173, 8174], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8176, 8177], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["proton"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["proton"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410405, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8183], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8163, 8164, 8165, 8166, 8169, 8170, 8175, 8178, 8179, 8180, 8181, 8182, 8184, 8185, 8186], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-20\nx-release: v4\ntitle: AWS Proton\ndescription: <p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p> <p>The documentation for each action shows the Query API request parameters and the XML response.</p> <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p> <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available service templates to automate their application or service deployments.</p> <p>Because administrators define the infrastructure and tooling that AWS Proton deploys and manages, they need permissions to use all of the listed API operations.</p> <p>When developers select a specific infrastructure and tooling set, AWS Proton deploys their applications. To monitor their applications that are running on AWS Proton, developers need permissions to the service <i>create</i>, <i>list</i>, <i>update</i> and <i>delete</i> API operations and the service instance <i>list</i> and <i>update</i> API operations.</p> <p>To learn more about AWS Proton administration, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/Welcome.html">AWS Proton Administrator Guide</a>.</p> <p>To learn more about deploying serverless and containerized applications on AWS Proton, see the <a href="https://docs.aws.amazon.com/proton/latest/userguide/Welcome.html">AWS Proton User Guide</a>.</p> <p> <b>Ensuring Idempotency</b> </p> <p>When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the operation occurs multiple times. This means that you might create more resources than you intended.</p> <p> <i>Idempotency</i> ensures that an API request action completes no more than one time. With an idempotent request, if the original request action completes successfully, any subsequent retries complete successfully without performing any further actions. However, the result might contain updated information, such as the current creation status.</p> <p>The following lists of APIs are grouped according to methods that ensure idempotency.</p> <p> <b>Idempotent create APIs with a client token</b> </p> <p>The API actions in this list support idempotency with the use of a <i>client token</i>. The corresponding AWS CLI commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you <i>don't</i> reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a default client token is automatically provided by SDKs.</p> <p>Given a request action that has succeeded:</p> <p>If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.</p> <p>If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p> <p>Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is created.</p> <p>If the original resource is deleted and you retry the request, a new resource is created.</p> <p>Idempotent create APIs with a client token:</p> <ul> <li> <p>CreateEnvironmentTemplateVersion</p> </li> <li> <p>CreateServiceTemplateVersion</p> </li> <li> <p>CreateEnvironmentAccountConnection</p> </li> </ul> <p> <b>Idempotent create APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>If you retry the request with an API from this group, and the original resource <i>hasn't</i> been modified, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.</p> <p>If the original resource has been modified, the retry throws a <code>ConflictException</code>.</p> <p>If you retry with different input parameters, the retry throws a <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p> <p>Idempotent create APIs:</p> <ul> <li> <p>CreateEnvironmentTemplate</p> </li> <li> <p>CreateServiceTemplate</p> </li> <li> <p>CreateEnvironment</p> </li> <li> <p>CreateService</p> </li> </ul> <p> <b>Idempotent delete APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.</p> <p>If you retry and the resource doesn't exist, the response is empty.</p> <p>In both cases, the retry succeeds.</p> <p>Idempotent delete APIs:</p> <ul> <li> <p>DeleteEnvironmentTemplate</p> </li> <li> <p>DeleteEnvironmentTemplateVersion</p> </li> <li> <p>DeleteServiceTemplate</p> </li> <li> <p>DeleteServiceTemplateVersion</p> </li> <li> <p>DeleteEnvironmentAccountConnection</p> </li> </ul> <p> <b>Asynchronous idempotent delete APIs</b> </p> <p>Given a request action that has succeeded:</p> <p>If you retry the request with an API from this group, if the original request delete operation status is <code>DELETE_IN_PROGRESS</code>, the retry returns the resource detail data in the response without performing any further actions.</p> <p>If the original request delete operation is complete, a retry returns an empty response.</p> <p>Asynchronous idempotent delete APIs:</p> <ul> <li> <p>DeleteEnvironment</p> </li> <li> <p>DeleteService</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: proton\nx-aws-signingName: proton\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/proton/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8188, 8189], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/proton/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-20: DataRow\">2020-07-20</span>", children: [8162, 8187, 8190, 8191, 8192, 8193], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-07-20, x-release:v4, title:AWS Proton, description:<p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p> <p>The documentation for each action shows the Query API request parameters and the XML response.</p> <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p> <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available service templates to automate their application or service deployment..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:proton, x-aws-signingName:proton, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/proton-2020-07-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/proton/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8194], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-20: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-07-20, x-release:v4, title:AWS Proton, description:<p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p> <p>The documentation for each action shows the Query API request parameters and the XML response.</p> <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p> <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available ser..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/proton/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/proton/2020-07-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:proton: DataRow\">amazonaws.com:proton</span>", children: [8160, 8161, 8195], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-07-20\nversions: { 2020-07-20:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-07-20, x-release:v4, title:AWS Proton, description:<p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p> <p>The documentation for each action shows the Query API request parameters and the XML response.</p> <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p> <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers,... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-01-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-01-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon QLDB"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["The control plane for Amazon QLDB"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8204, 8205], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8208, 8209, 8210, 8211], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8213, 8214], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["qldb"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["qldb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410406, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8220], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8200, 8201, 8202, 8203, 8206, 8207, 8212, 8215, 8216, 8217, 8218, 8219, 8221, 8222, 8223], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-01-02\nx-release: v4\ntitle: Amazon QLDB\ndescription: The control plane for Amazon QLDB\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: qldb\nx-aws-signingName: qldb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-01-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/qldb/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8225, 8226], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/qldb/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-01-02: DataRow\">2019-01-02</span>", children: [8199, 8224, 8227, 8228, 8229, 8230, 8231], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-01-02, x-release:v4, title:Amazon QLDB, description:The control plane for Amazon QLDB, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:qldb, x-aws-signingName:qldb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/qldb-2019-01-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/qldb/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8232], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-01-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-01-02, x-release:v4, title:Amazon QLDB, description:The control plane for Amazon QLDB, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:qldb, x-aws-signingName:qldb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/qldb-2019-01-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/qldb/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/qldb/2019-01-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-01-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:qldb: DataRow\">amazonaws.com:qldb</span>", children: [8197, 8198, 8233], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-01-02\nversions: { 2019-01-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-01-02, x-release:v4, title:Amazon QLDB, description:The control plane for Amazon QLDB, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:qldb, x-aws-signingName:qldb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/qldb-2019-01-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-07-11"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-07-11"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon QLDB Session"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The transactional data APIs for Amazon QLDB</p> <note> <p>Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.</p> <ul> <li> <p>If you are working with an AWS SDK, use the QLDB driver. The driver provides a high-level abstraction layer above this <i>QLDB Session</i> data plane and manages <code>SendCommand</code> API calls for you. For information and a list of supported programming languages, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-driver.html">Getting started with the driver</a> in the <i>Amazon QLDB Developer Guide</i>.</p> </li> <li> <p>If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB shell. The shell is a command line interface that uses the QLDB driver to interact with a ledger. For information, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/data-shell.html">Accessing Amazon QLDB using the QLDB shell</a>.</p> </li> </ul> </note>\"><p>The transactional data APIs for Am<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8242, 8243], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8246, 8247, 8248, 8249], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8251, 8252], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["qldb-session"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["qldb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410407, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8258], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8238, 8239, 8240, 8241, 8244, 8245, 8250, 8253, 8254, 8255, 8256, 8257, 8259, 8260, 8261], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-07-11\nx-release: v4\ntitle: Amazon QLDB Session\ndescription: <p>The transactional data APIs for Amazon QLDB</p> <note> <p>Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.</p> <ul> <li> <p>If you are working with an AWS SDK, use the QLDB driver. The driver provides a high-level abstraction layer above this <i>QLDB Session</i> data plane and manages <code>SendCommand</code> API calls for you. For information and a list of supported programming languages, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-driver.html">Getting started with the driver</a> in the <i>Amazon QLDB Developer Guide</i>.</p> </li> <li> <p>If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB shell. The shell is a command line interface that uses the QLDB driver to interact with a ledger. For information, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/data-shell.html">Accessing Amazon QLDB using the QLDB shell</a>.</p> </li> </ul> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: qldb-session\nx-aws-signingName: qldb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-07-11<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/qldb/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8263, 8264], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/qldb/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-07-11: DataRow\">2019-07-11</span>", children: [8237, 8262, 8265, 8266, 8267, 8268, 8269], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-07-11, x-release:v4, title:Amazon QLDB Session, description:<p>The transactional data APIs for Amazon QLDB</p> <note> <p>Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.</p> <ul> <li> <p>If you are working with an AWS SDK, use the QLDB driver. The driver provides a high-level abstraction layer above this <i>QLDB Session</i> data plane and manages <code>SendCommand</code> API calls for you. For information and a list of supported programming languages, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-driver.html">Getting started with the driver</a> in the <i>Amazon QLDB Developer Guide</i>.</p> </li> <li> <p>If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB shell. The shell is a command line interface that uses the QLDB driver to interact with a ledger. For information, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/data-shell.html">Accessing Amazon QLDB using the QLD..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:qldb-session, x-aws-signingName:qldb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/qldb-session-2019-07-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/qldb/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8270], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-07-11: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-11, x-release:v4, title:Amazon QLDB Session, description:<p>The transactional data APIs for Amazon QLDB</p> <note> <p>Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.</p> <ul> <li> <p>If you are working with an AWS SDK, use the QLDB driver. The driver provides a high-level abstraction layer above this <i>QLDB Session</i> data plane and manages <code>SendCommand</code> API calls for you. For information and a list of supported programming languages, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-driver.html">Getting started with the driver</a> in the <i>Amazon QLDB Developer Guide</i>.</p> </li> <li> <p>If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB shell. The shell is a command line interface that uses the QLDB driver to interact with a ledger. For information, see <a href="https://docs.aws.amazon.com/qldb..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/qldb/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/qldb-session/2019-07-11/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-07-11: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:qldb-session: DataRow\">amazonaws.com:qldb-session</span>", children: [8235, 8236, 8271], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-07-11\nversions: { 2019-07-11:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-11, x-release:v4, title:Amazon QLDB Session, description:<p>The transactional data APIs for Amazon QLDB</p> <note> <p>Instead of interacting directly with this API, we recommend using the QLDB driver or the QLDB shell to execute data transactions on a ledger.</p> <ul> <li> <p>If you are working with an AWS SDK, use the QLDB driver. The driver provides a high-level abstraction layer above this <i>QLDB Session</i> data plane and manages <code>SendCommand</code> API calls for you. For information and a list of supported programming languages, see <a href="https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started-driver.html">Getting started with the driver</a> in the <i>Amazon QLDB Developer Guide</i>.</p> </li> <li> <p>If you are working with the AWS Command Line Interface (AWS CLI), use the QLDB shell. The shell is a command line interface that uses the QLDB driver to interact with a ledger. For information, see <a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-04-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-04-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon QuickSight"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon QuickSight API Reference</fullname> <p>Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every user in your organization. This API reference contains documentation for a programming interface that you can use to manage Amazon QuickSight. </p>\"><fullname>Amazon QuickSight API Refer<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8280, 8281], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8284, 8285, 8286, 8287], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8289, 8290], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["quicksight"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410408, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8295], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8276, 8277, 8278, 8279, 8282, 8283, 8288, 8291, 8292, 8293, 8294, 8296, 8297, 8298], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-04-01\nx-release: v4\ntitle: Amazon QuickSight\ndescription: <fullname>Amazon QuickSight API Reference</fullname> <p>Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every user in your organization. This API reference contains documentation for a programming interface that you can use to manage Amazon QuickSight. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: quicksight\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-04-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/quicksight/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8300, 8301], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/quicksight/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-04-01: DataRow\">2018-04-01</span>", children: [8275, 8299, 8302, 8303, 8304, 8305, 8306], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-04-01, x-release:v4, title:Amazon QuickSight, description:<fullname>Amazon QuickSight API Reference</fullname> <p>Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every user in your organization. This API reference contains documentation for a programming interface that you can use to manage Amazon QuickSight. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:quicksight, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/quicksight-2018-04-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/quicksight/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8307], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-04-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-01, x-release:v4, title:Amazon QuickSight, description:<fullname>Amazon QuickSight API Reference</fullname> <p>Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every user in your organization. This API reference contains documentation for a programming interface that you can use to manage Amazon QuickSight. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:quicksight, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/quicksight/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/quicksight/2018-04-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-04-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:quicksight: DataRow\">amazonaws.com:quicksight</span>", children: [8273, 8274, 8308], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-04-01\nversions: { 2018-04-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-01, x-release:v4, title:Amazon QuickSight, description:<fullname>Amazon QuickSight API Reference</fullname> <p>Amazon QuickSight is a fully managed, serverless business intelligence service for the Amazon Web Services Cloud that makes it easy to extend data and insights to every user in your organization. This API reference contains documentation for a programming interface that you can use to manage Amazon QuickSight. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:quicksight, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubuse... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-01-04"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-01-04"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Resource Access Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>This is the <i>Resource Access Manager API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share your Amazon Web Services resources across Amazon Web Services accounts and within your organization or organizational units (OUs) in Organizations. For supported resource types, you can also share resources with IAM roles and IAM users. If you have multiple Amazon Web Services accounts, you can use RAM to share those resources with other accounts.</p> <p>To learn more about RAM, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/ram">Resource Access Manager product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/ram/latest/userguide/">Resource Access Manager User Guide</a> </p> </li> </ul>\"><p>This is the <i>Resource Access Man<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8317, 8318], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8321, 8322, 8323, 8324], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8326, 8327], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ram"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410409, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8332], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8313, 8314, 8315, 8316, 8319, 8320, 8325, 8328, 8329, 8330, 8331, 8333, 8334, 8335], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-01-04\nx-release: v4\ntitle: AWS Resource Access Manager\ndescription: <p>This is the <i>Resource Access Manager API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share your Amazon Web Services resources across Amazon Web Services accounts and within your organization or organizational units (OUs) in Organizations. For supported resource types, you can also share resources with IAM roles and IAM users. If you have multiple Amazon Web Services accounts, you can use RAM to share those resources with other accounts.</p> <p>To learn more about RAM, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/ram">Resource Access Manager product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/ram/latest/userguide/">Resource Access Manager User Guide</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ram\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-01-04<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ram/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8337, 8338], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ram/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-01-04: DataRow\">2018-01-04</span>", children: [8312, 8336, 8339, 8340, 8341, 8342, 8343], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-01-04, x-release:v4, title:AWS Resource Access Manager, description:<p>This is the <i>Resource Access Manager API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share your Amazon Web Services resources across Amazon Web Services accounts and within your organization or organizational units (OUs) in Organizations. For supported resource types, you can also share resources with IAM roles and IAM users. If you have multiple Amazon Web Services accounts, you can use RAM to share those resources with other accounts.</p> <p>To learn more about RAM, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/ram">Resource Access Manager product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/ram/latest/userguide/">Resource Access Manager User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ram, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ram-2018-01-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ram/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8344], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-01-04: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-04, x-release:v4, title:AWS Resource Access Manager, description:<p>This is the <i>Resource Access Manager API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share your Amazon Web Services resources across Amazon Web Services accounts and within your organization or organizational units (OUs) in Organizations. For supported resource types, you can also share resources with IAM roles and IAM users. If you have multiple Amazon Web Services accounts, you can use RAM to share those resources with other accounts.</p> <p>To learn more about RAM, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/ram">Resource Access Manager product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/ram/latest/userguide/">Resource Access Manager User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ram/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ram/2018-01-04/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-01-04: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ram: DataRow\">amazonaws.com:ram</span>", children: [8310, 8311, 8345], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-01-04\nversions: { 2018-01-04:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-01-04, x-release:v4, title:AWS Resource Access Manager, description:<p>This is the <i>Resource Access Manager API Reference</i>. This documentation provides descriptions and syntax for each of the actions and data types in RAM. RAM is a service that helps you securely share your Amazon Web Services resources across Amazon Web Services accounts and within your organization or organizational units (OUs) in Organizations. For supported resource types, you can also share resources with IAM roles and IAM users. If you have multiple Amazon Web Services accounts, you can use RAM to share those resources with other accounts.</p> <p>To learn more about RAM, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/ram">Resource Access Manager product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/ram/latest/userguide/">Resource Access Manager User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-10-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Relational Database Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Relational Database Service</fullname> <p> </p> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.</p> <p>This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.</p> <p> <b>Amazon RDS API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Operations.html">API Actions</a>.</p> </li> <li> <p>For the alphabetical list of data types, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Types.html">Data Types</a>.</p> </li> <li> <p>For a list of common query parameters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonParameters.html">Common Parameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonErrors.html">Common Errors</a>.</p> </li> </ul> <p> <b>Amazon RDS User Guide</b> </p> <ul> <li> <p>For a summary of the Amazon RDS interfaces, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html#Welcome.Interfaces">Available RDS Interfaces</a>.</p> </li> <li> <p>For more information about how to use the Query API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Using_the_Query_API.html">Using the Query API</a>.</p> </li> </ul>\"><fullname>Amazon Relational Database <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8354, 8355], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8358, 8359, 8360, 8361], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8363, 8364], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["rds"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410410, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8369], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8350, 8351, 8352, 8353, 8356, 8357, 8362, 8365, 8366, 8367, 8368, 8370, 8371, 8372], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-10-31\nx-release: v4\ntitle: Amazon Relational Database Service\ndescription: <fullname>Amazon Relational Database Service</fullname> <p> </p> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services, there are no up-front investments, and you pay only for the resources you use.</p> <p>This interface reference for Amazon RDS contains documentation for a programming or command line interface you can use to manage Amazon RDS. Amazon RDS is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.</p> <p> <b>Amazon RDS API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Operations.html">API Actions</a>.</p> </li> <li> <p>For the alphabetical list of data types, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Types.html">Data Types</a>.</p> </li> <li> <p>For a list of common query parameters, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonParameters.html">Common Parameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/CommonErrors.html">Common Errors</a>.</p> </li> </ul> <p> <b>Amazon RDS User Guide</b> </p> <ul> <li> <p>For a summary of the Amazon RDS interfaces, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html#Welcome.Interfaces">Available RDS Interfaces</a>.</p> </li> <li> <p>For more information about how to use the Query API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Using_the_Query_API.html">Using the Query API</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: rds\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-10-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/rds/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8374, 8375], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/rds/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-10-31: DataRow\">2014-10-31</span>", children: [8349, 8373, 8376, 8377, 8378, 8379, 8380], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2014-10-31, x-release:v4, title:Amazon Relational Database Service, description:<fullname>Amazon Relational Database Service</fullname> <p> </p> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can scale your DB instance's compute resources and storage capacity to meet your application's d..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rds, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/rds-2014-10-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8381], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-10-31: { added:2017-05-02T07:59:53.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon Relational Database Service, description:<fullname>Amazon Relational Database Service</fullname> <p> </p> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB instance. Amazon RDS is flexible: you can sc..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/rds/2014-10-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-10-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:rds: DataRow\">amazonaws.com:rds</span>", children: [8347, 8348, 8382], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2014-10-31\nversions: { 2014-10-31:{ added:2017-05-02T07:59:53.000Z, info:{ version:2014-10-31, x-release:v4, title:Amazon Relational Database Service, description:<fullname>Amazon Relational Database Service</fullname> <p> </p> <p>Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up, operate, and scale a relational database in the cloud. It provides cost-efficient, resizeable capacity for an industry-standard relational database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses unique.</p> <p>Amazon RDS gives you access to the capabilities of a MySQL, MariaDB, PostgreSQL, Microsoft SQL Server, Oracle, or Amazon Aurora database server. These capabilities mean that the code, applications, and tools you already use today with your existing databases work with Amazon RDS without modification. Amazon RDS automatically backs up your database and maintains the database software that powers your DB insta... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-08-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-08-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS RDS DataService"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p><fullname>Amazon RDS Data Service</fullname> <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.</p> <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p></p>\"><p><fullname>Amazon RDS Data Service<<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8391, 8392], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8395, 8396, 8397, 8398], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8400, 8401], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["rds-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["rds-data"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410411, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8407], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8387, 8388, 8389, 8390, 8393, 8394, 8399, 8402, 8403, 8404, 8405, 8406, 8408, 8409, 8410], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-08-01\nx-release: v4\ntitle: AWS RDS DataService\ndescription: <p><fullname>Amazon RDS Data Service</fullname> <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.</p> <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p></p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: rds-data\nx-aws-signingName: rds-data\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-08-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/rds-data/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8412, 8413], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/rds-data/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T07:24:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-08-01: DataRow\">2018-08-01</span>", children: [8386, 8411, 8414, 8415, 8416, 8417, 8418], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-08-01, x-release:v4, title:AWS RDS DataService, description:<p><fullname>Amazon RDS Data Service</fullname> <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.</p> <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rds-data, x-aws-signingName:rds-data, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/rds-data-2018-08-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds-data/ }\nupdated: 2020-03-25T07:24:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8419], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-08-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-01, x-release:v4, title:AWS RDS DataService, description:<p><fullname>Amazon RDS Data Service</fullname> <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.</p> <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rds-data, x-aws-signingName:rds-data, x-orig..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rds-data/ }, updated:2020-03-25T07:24:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-08-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:rds-data: DataRow\">amazonaws.com:rds-data</span>", children: [8384, 8385, 8420], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-08-01\nversions: { 2018-08-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-01, x-release:v4, title:AWS RDS DataService, description:<p><fullname>Amazon RDS Data Service</fullname> <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless DB cluster. To run these statements, you work with the Data Service API.</p> <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p></p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rds-d... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-12-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-12-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Redshift"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Redshift</fullname> <p> <b>Overview</b> </p> <p>This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the Amazon Redshift Management Interfaces</a>.</p> <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine. You can focus on using your data to acquire new insights for your business and customers.</p> <p>If you are a first-time user of Amazon Redshift, we recommend that you begin by reading the <a href="https://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html">Amazon Redshift Getting Started Guide</a>.</p> <p>If you are a database developer, the <a href="https://docs.aws.amazon.com/redshift/latest/dg/welcome.html">Amazon Redshift Database Developer Guide</a> explains how to design, build, query, and maintain the databases that make up your data warehouse. </p>\"><fullname>Amazon Redshift</fullname> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8429, 8430], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8433, 8434, 8435, 8436], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8438, 8439], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["redshift"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410412, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8444], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8425, 8426, 8427, 8428, 8431, 8432, 8437, 8440, 8441, 8442, 8443, 8445, 8446, 8447], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-12-01\nx-release: v4\ntitle: Amazon Redshift\ndescription: <fullname>Amazon Redshift</fullname> <p> <b>Overview</b> </p> <p>This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the Amazon Redshift Management Interfaces</a>.</p> <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning capacity, monitoring and backing up the cluster, and applying patches and upgrades to the Amazon Redshift engine. You can focus on using your data to acquire new insights for your business and customers.</p> <p>If you are a first-time user of Amazon Redshift, we recommend that you begin by reading the <a href="https://docs.aws.amazon.com/redshift/latest/gsg/getting-started.html">Amazon Redshift Getting Started Guide</a>.</p> <p>If you are a database developer, the <a href="https://docs.aws.amazon.com/redshift/latest/dg/welcome.html">Amazon Redshift Database Developer Guide</a> explains how to design, build, query, and maintain the databases that make up your data warehouse. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: redshift\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-12-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/redshift/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8449, 8450], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/redshift/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-22T19:13:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-12-01: DataRow\">2012-12-01</span>", children: [8424, 8448, 8451, 8452, 8453, 8454, 8455], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2012-12-01, x-release:v4, title:Amazon Redshift, description:<fullname>Amazon Redshift</fullname> <p> <b>Overview</b> </p> <p>This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the Amazon Redshift Management Interfaces</a>.</p> <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning capacity, monitoring and backing up the cluster, and applying patches and..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:redshift, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/redshift-2012-12-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/redshift/ }\nupdated: 2020-04-22T19:13:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8456], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-12-01: { added:2017-05-02T07:59:53.000Z, info:{ version:2012-12-01, x-release:v4, title:Amazon Redshift, description:<fullname>Amazon Redshift</fullname> <p> <b>Overview</b> </p> <p>This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the Amazon Redshift Management Interfaces</a>.</p> <p>Amazon Redshift manages all the work of setting up, operating, and scaling a data warehouse: provisioning ca..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/redshift/ }, updated:2020-04-22T19:13:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/redshift/2012-12-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-12-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:redshift: DataRow\">amazonaws.com:redshift</span>", children: [8422, 8423, 8457], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2012-12-01\nversions: { 2012-12-01:{ added:2017-05-02T07:59:53.000Z, info:{ version:2012-12-01, x-release:v4, title:Amazon Redshift, description:<fullname>Amazon Redshift</fullname> <p> <b>Overview</b> </p> <p>This is an interface reference for Amazon Redshift. It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift clusters. Note that Amazon Redshift is asynchronous, which means that some interfaces may require techniques, such as polling or asynchronous callback handlers, to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a change is applied immediately, on the next instance reboot, or during the next maintenance window. For a summary of the Amazon Redshift cluster management interfaces, go to <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/using-aws-sdk.html">Using the Amazon Redshift Management Interfaces</a>.</p> <p>Amazon Redshift manages all the work of setting up, operating, and sc... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Redshift Data API Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds. </p> <p>For more information about the Amazon Redshift Data API, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>\"><p>You can use the Amazon Redshift Da<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8466, 8467], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8470, 8471, 8472, 8473], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8475, 8476], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["redshift-data"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["redshift-data"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410413, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8482], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8462, 8463, 8464, 8465, 8468, 8469, 8474, 8477, 8478, 8479, 8480, 8481, 8483, 8484, 8485], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-20\nx-release: v4\ntitle: Redshift Data API Service\ndescription: <p>You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds. </p> <p>For more information about the Amazon Redshift Data API, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: redshift-data\nx-aws-signingName: redshift-data\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/redshift-data/\">https://docs.aws.amazon.com/redshift-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8487, 8488], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/redshift-data/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-20: DataRow\">2019-12-20</span>", children: [8461, 8486, 8489, 8490, 8491, 8492], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2019-12-20, x-release:v4, title:Redshift Data API Service, description:<p>You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds. </p> <p>For more information about the Amazon Redshift Data API, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:redshift-data, x-aws-signingName:redshift-data, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/redshift-data-2019-12-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/redshift-data/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8493], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-20: { added:2021-01-15T15:07:17.488Z, info:{ version:2019-12-20, x-release:v4, title:Redshift Data API Service, description:<p>You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds. </p> <p>For more information about the Amazon Redshift Data API, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:redshift-data, x-aws-signingName:redshift-data, x-origin:[1 x 4] { contentType:applicat..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/redshift-data/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/redshift-data/2019-12-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:redshift-data: DataRow\">amazonaws.com:redshift-data</span>", children: [8459, 8460, 8494], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2019-12-20\nversions: { 2019-12-20:{ added:2021-01-15T15:07:17.488Z, info:{ version:2019-12-20, x-release:v4, title:Redshift Data API Service, description:<p>You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds. </p> <p>For more information about the Amazon Redshift Data API, see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html">Using the Amazon Redshift Data API</a> in the <i>Amazon Redshift Cluster Management Guide</i>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:redshift-data, x-aws-signingName:redshift-data, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-06-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-06-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Rekognition"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the Amazon Rekognition API reference.\">This is the Amazon Rekognition API re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8503, 8504], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8507, 8508, 8509, 8510], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8512, 8513], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["rekognition"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410414, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8518], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8499, 8500, 8501, 8502, 8505, 8506, 8511, 8514, 8515, 8516, 8517, 8519, 8520, 8521], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-06-27\nx-release: v4\ntitle: Amazon Rekognition\ndescription: This is the Amazon Rekognition API reference.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: rekognition\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-06-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/rekognition/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8523, 8524], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/rekognition/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-31T20:14:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-06-27: DataRow\">2016-06-27</span>", children: [8498, 8522, 8525, 8526, 8527, 8528, 8529], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-06-27, x-release:v4, title:Amazon Rekognition, description:This is the Amazon Rekognition API reference., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rekognition, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/rekognition-2016-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rekognition/ }\nupdated: 2020-03-31T20:14:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8530], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-06-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-27, x-release:v4, title:Amazon Rekognition, description:This is the Amazon Rekognition API reference., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rekognition, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/rekognition-2016-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/rekognition/ }, updated:2020-03-31T20:14:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/rekognition/2016-06-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-06-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:rekognition: DataRow\">amazonaws.com:rekognition</span>", children: [8496, 8497, 8531], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-06-27\nversions: { 2016-06-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-27, x-release:v4, title:Amazon Rekognition, description:This is the Amazon Rekognition API reference., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:rekognition, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/rekognition-2016-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-11-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Resource Groups"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Resource Groups</fullname> <p>AWS Resource Groups lets you organize AWS resources such as Amazon EC2 instances, Amazon Relational Database Service databases, and Amazon S3 buckets into groups using criteria that you define as tags. A resource group is a collection of resources that match the resource types specified in a query, and share one or more tags or portions of tags. You can create a group of resources based on their roles in your cloud infrastructure, lifecycle stages, regions, application layers, or virtually any criteria. Resource Groups enable you to automate management tasks, such as those in AWS Systems Manager Automation documents, on tag-related resources in AWS Systems Manager. Groups of tagged resources also let you quickly view a custom console in AWS Systems Manager that shows AWS Config compliance and other monitoring data about member resources.</p> <p>To create a resource group, build a resource query, and specify tags that identify the criteria that members of the group have in common. Tags are key-value pairs.</p> <p>For more information about Resource Groups, see the <a href="https://docs.aws.amazon.com/ARG/latest/userguide/welcome.html">AWS Resource Groups User Guide</a>.</p> <p>AWS Resource Groups uses a REST-compliant API that you can use to perform the following types of operations.</p> <ul> <li> <p>Create, Read, Update, and Delete (CRUD) operations on resource groups and resource query entities</p> </li> <li> <p>Applying, editing, and removing tags from resource groups</p> </li> <li> <p>Resolving resource group member ARNs so they can be returned as search results</p> </li> <li> <p>Getting data about resources that are members of a group</p> </li> <li> <p>Searching AWS resources based on a resource query</p> </li> </ul>\"><fullname>AWS Resource Groups</fullna<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8540, 8541], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8544, 8545, 8546, 8547], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8549, 8550], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["resource-groups"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["resource-groups"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410415, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8556], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8536, 8537, 8538, 8539, 8542, 8543, 8548, 8551, 8552, 8553, 8554, 8555, 8557, 8558, 8559], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-11-27\nx-release: v4\ntitle: AWS Resource Groups\ndescription: <fullname>AWS Resource Groups</fullname> <p>AWS Resource Groups lets you organize AWS resources such as Amazon EC2 instances, Amazon Relational Database Service databases, and Amazon S3 buckets into groups using criteria that you define as tags. A resource group is a collection of resources that match the resource types specified in a query, and share one or more tags or portions of tags. You can create a group of resources based on their roles in your cloud infrastructure, lifecycle stages, regions, application layers, or virtually any criteria. Resource Groups enable you to automate management tasks, such as those in AWS Systems Manager Automation documents, on tag-related resources in AWS Systems Manager. Groups of tagged resources also let you quickly view a custom console in AWS Systems Manager that shows AWS Config compliance and other monitoring data about member resources.</p> <p>To create a resource group, build a resource query, and specify tags that identify the criteria that members of the group have in common. Tags are key-value pairs.</p> <p>For more information about Resource Groups, see the <a href="https://docs.aws.amazon.com/ARG/latest/userguide/welcome.html">AWS Resource Groups User Guide</a>.</p> <p>AWS Resource Groups uses a REST-compliant API that you can use to perform the following types of operations.</p> <ul> <li> <p>Create, Read, Update, and Delete (CRUD) operations on resource groups and resource query entities</p> </li> <li> <p>Applying, editing, and removing tags from resource groups</p> </li> <li> <p>Resolving resource group member ARNs so they can be returned as search results</p> </li> <li> <p>Getting data about resources that are members of a group</p> </li> <li> <p>Searching AWS resources based on a resource query</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: resource-groups\nx-aws-signingName: resource-groups\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-11-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/resource-groups/\">https://docs.aws.amazon.com/resource-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8561, 8562], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/resource-groups/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-11-27: DataRow\">2017-11-27</span>", children: [8535, 8560, 8563, 8564, 8565, 8566, 8567], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-11-27, x-release:v4, title:AWS Resource Groups, description:<fullname>AWS Resource Groups</fullname> <p>AWS Resource Groups lets you organize AWS resources such as Amazon EC2 instances, Amazon Relational Database Service databases, and Amazon S3 buckets into groups using criteria that you define as tags. A resource group is a collection of resources that match the resource types specified in a query, and share one or more tags or portions of tags. You can create a group of resources based on their roles in your cloud infrastructure, lifecycle stages, regions, application layers, or virtually any criteria. Resource Groups enable you to automate management tasks, such as those in AWS Systems Manager Automation documents, on tag-related resources in AWS Systems Manager. Groups of tagged resources also let you quickly view a custom console in AWS Systems Manager that shows AWS Config compliance and other monitoring data about member resources.</p> <p>To create a resource group, build a resource query, and specify tags that identify the criteria ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:resource-groups, x-aws-signingName:resource-groups, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/resource-groups-2017-11-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/resource-groups/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8568], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-11-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AWS Resource Groups, description:<fullname>AWS Resource Groups</fullname> <p>AWS Resource Groups lets you organize AWS resources such as Amazon EC2 instances, Amazon Relational Database Service databases, and Amazon S3 buckets into groups using criteria that you define as tags. A resource group is a collection of resources that match the resource types specified in a query, and share one or more tags or portions of tags. You can create a group of resources based on their roles in your cloud infrastructure, lifecycle stages, regions, application layers, or virtually any criteria. Resource Groups enable you to automate management tasks, such as those in AWS Systems Manager Automation documents, on tag-related resources in AWS Systems Manager. Groups of tagged resources also let you quickly view a custom console in AWS Systems Manager that shows AWS Config compliance and other monitoring data about member resources.</p> <p>To create a resource ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/resource-groups/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/resource-groups/2017-11-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-11-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:resource-groups: DataRow\">amazonaws.com:resource-groups</span>", children: [8533, 8534, 8569], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-11-27\nversions: { 2017-11-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-11-27, x-release:v4, title:AWS Resource Groups, description:<fullname>AWS Resource Groups</fullname> <p>AWS Resource Groups lets you organize AWS resources such as Amazon EC2 instances, Amazon Relational Database Service databases, and Amazon S3 buckets into groups using criteria that you define as tags. A resource group is a collection of resources that match the resource types specified in a query, and share one or more tags or portions of tags. You can create a group of resources based on their roles in your cloud infrastructure, lifecycle stages, regions, application layers, or virtually any criteria. Resource Groups enable you to automate management tasks, such as those in AWS Systems Manager Automation documents, on tag-related resources in AWS Systems Manager. Groups of tagged resources also let you quickly view a custom console in AWS Systems Manager that shows AWS Config compliance and other monitoring data about member ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-01-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-01-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Resource Groups Tagging API"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Resource Groups Tagging API</fullname>\"><fullname>Resource Groups Tagging API<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8578, 8579], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8582, 8583, 8584, 8585], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8587, 8588], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["resourcegroupstaggingapi"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410416, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8593], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8574, 8575, 8576, 8577, 8580, 8581, 8586, 8589, 8590, 8591, 8592, 8594, 8595, 8596], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-01-26\nx-release: v4\ntitle: AWS Resource Groups Tagging API\ndescription: <fullname>Resource Groups Tagging API</fullname>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: resourcegroupstaggingapi\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-01-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/tagging/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8598, 8599], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/tagging/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-09T06:36:06.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-01-26: DataRow\">2017-01-26</span>", children: [8573, 8597, 8600, 8601, 8602, 8603, 8604], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-01-26, x-release:v4, title:AWS Resource Groups Tagging API, description:<fullname>Resource Groups Tagging API</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:resourcegroupstaggingapi, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/resourcegroupstaggingapi-2017-01-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/tagging/ }\nupdated: 2020-05-09T06:36:06.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8605], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-01-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-26, x-release:v4, title:AWS Resource Groups Tagging API, description:<fullname>Resource Groups Tagging API</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:resourcegroupstaggingapi, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/resourcegroupstaggingapi-2017-01-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud],..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/tagging/ }, updated:2020-05-09T06:36:06.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/resourcegroupstaggingapi/2017-01-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-01-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:resourcegroupstaggingapi: DataRow\">amazonaws.com:resourcegroupstaggingapi</span>", children: [8571, 8572, 8606], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-01-26\nversions: { 2017-01-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-01-26, x-release:v4, title:AWS Resource Groups Tagging API, description:<fullname>Resource Groups Tagging API</fullname>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:resourcegroupstaggingapi, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/resourcegroupstaggingapi-2017-01-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS RoboMaker"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This section provides documentation for the AWS RoboMaker API operations.\">This section provides documentation f<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8615, 8616], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8619, 8620, 8621, 8622], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8624, 8625], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["robomaker"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["robomaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410417, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8631], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8611, 8612, 8613, 8614, 8617, 8618, 8623, 8626, 8627, 8628, 8629, 8630, 8632, 8633, 8634], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-06-29\nx-release: v4\ntitle: AWS RoboMaker\ndescription: This section provides documentation for the AWS RoboMaker API operations.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: robomaker\nx-aws-signingName: robomaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-06-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/robomaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8636, 8637], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/robomaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-04T11:33:26.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-06-29: DataRow\">2018-06-29</span>", children: [8610, 8635, 8638, 8639, 8640, 8641, 8642], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-06-29, x-release:v4, title:AWS RoboMaker, description:This section provides documentation for the AWS RoboMaker API operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:robomaker, x-aws-signingName:robomaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/robomaker-2018-06-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/robomaker/ }\nupdated: 2020-04-04T11:33:26.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8643], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-29, x-release:v4, title:AWS RoboMaker, description:This section provides documentation for the AWS RoboMaker API operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:robomaker, x-aws-signingName:robomaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/robomaker-2018-06-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[c..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/robomaker/ }, updated:2020-04-04T11:33:26.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/robomaker/2018-06-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:robomaker: DataRow\">amazonaws.com:robomaker</span>", children: [8608, 8609, 8644], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-06-29\nversions: { 2018-06-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-29, x-release:v4, title:AWS RoboMaker, description:This section provides documentation for the AWS RoboMaker API operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:robomaker, x-aws-signingName:robomaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/robomaker-2018-06-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.ht... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-04-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-04-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Route 53"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.\">Amazon Route 53 is a highly available<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8653, 8654], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8657, 8658, 8659, 8660], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8662, 8663], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410418, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8668], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8649, 8650, 8651, 8652, 8655, 8656, 8661, 8664, 8665, 8666, 8667, 8669, 8670, 8671], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-04-01\nx-release: v4\ntitle: Amazon Route 53\ndescription: Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-04-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/route53/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8673, 8674], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-04-01: DataRow\">2013-04-01</span>", children: [8648, 8672, 8675, 8676, 8677, 8678, 8679], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-04-01, x-release:v4, title:Amazon Route 53, description:Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-2013-04-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8680], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-04-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-04-01, x-release:v4, title:Amazon Route 53, description:Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-2013-04-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53/2013-04-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-04-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53: DataRow\">amazonaws.com:route53</span>", children: [8646, 8647, 8681], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-04-01\nversions: { 2013-04-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-04-01, x-release:v4, title:Amazon Route 53, description:Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-2013-04-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-05-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-05-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Route 53 Domains"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Route 53 API actions let you register domain names and perform related operations.\">Amazon Route 53 API actions let you r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8690, 8691], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8694, 8695, 8696, 8697], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8699, 8700], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53domains"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410419, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8705], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8686, 8687, 8688, 8689, 8692, 8693, 8698, 8701, 8702, 8703, 8704, 8706, 8707, 8708], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-05-15\nx-release: v4\ntitle: Amazon Route 53 Domains\ndescription: Amazon Route 53 API actions let you register domain names and perform related operations.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53domains\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-05-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/route53domains/\">https://docs.aws.amazon.com/route53do<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8710, 8711], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53domains/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T20:02:04.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-05-15: DataRow\">2014-05-15</span>", children: [8685, 8709, 8712, 8713, 8714, 8715, 8716], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-05-15, x-release:v4, title:Amazon Route 53 Domains, description:Amazon Route 53 API actions let you register domain names and perform related operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53domains, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53domains-2014-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53domains/ }\nupdated: 2020-04-21T20:02:04.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8717], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-05-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-05-15, x-release:v4, title:Amazon Route 53 Domains, description:Amazon Route 53 API actions let you register domain names and perform related operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53domains, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53domains-2014-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-catego..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53domains/ }, updated:2020-04-21T20:02:04.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53domains/2014-05-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-05-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53domains: DataRow\">amazonaws.com:route53domains</span>", children: [8683, 8684, 8718], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-05-15\nversions: { 2014-05-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-05-15, x-release:v4, title:Amazon Route 53 Domains, description:Amazon Route 53 API actions let you register domain names and perform related operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53domains, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53domains-2014-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/i... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-04-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-04-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Route 53 Resolver"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names for EC2 instances or Elastic Load Balancing load balancers. Resolver performs recursive lookups against public name servers for all other domain names.</p> <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p> <p> <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b> </p> <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p> <b>Conditionally forward queries from a VPC to resolvers on your network</b> </p> <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network. To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to. If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose whether to forward queries from your VPCs to your network (outbound queries), from your network to your VPCs (inbound queries), or both.</p>\"><p>When you create a VPC using Amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8727, 8728], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8731, 8732, 8733, 8734], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8736, 8737], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53resolver"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410420, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8742], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8723, 8724, 8725, 8726, 8729, 8730, 8735, 8738, 8739, 8740, 8741, 8743, 8744, 8745], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-04-01\nx-release: v4\ntitle: Amazon Route 53 Resolver\ndescription: <p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names for EC2 instances or Elastic Load Balancing load balancers. Resolver performs recursive lookups against public name servers for all other domain names.</p> <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p> <p> <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b> </p> <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers on Your Network Forward DNS Queries to Route 53 Resolver</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p> <b>Conditionally forward queries from a VPC to resolvers on your network</b> </p> <p>You can configure Resolver to forward queries that it receives from EC2 instances in your VPCs to DNS resolvers on your network. To forward selected queries, you create Resolver rules that specify the domain names for the DNS queries that you want to forward (such as example.com), and the IP addresses of the DNS resolvers on your network that you want to forward the queries to. If a query matches multiple rules (example.com, acme.example.com), Resolver chooses the rule with the most specific match (acme.example.com) and forwards the query to the IP addresses that you specified in that rule. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-vpc-to-network">How Route 53 Resolver Forwards DNS Queries from Your VPCs to Your Network</a> in the <i>Amazon Route 53 Developer Guide</i>.</p> <p>Like Amazon VPC, Resolver is Regional. In each Region where you have VPCs, you can choose whether to forward queries from your VPCs to your network (outbound queries), from your network to your VPCs (inbound queries), or both.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53resolver\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-04-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/route53resolver/\">https://docs.aws.amazon.com/route53re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8747, 8748], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53resolver/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-04-01: DataRow\">2018-04-01</span>", children: [8722, 8746, 8749, 8750, 8751, 8752, 8753], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-04-01, x-release:v4, title:Amazon Route 53 Resolver, description:<p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names for EC2 instances or Elastic Load Balancing load balancers. Resolver performs recursive lookups against public name servers for all other domain names.</p> <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p> <p> <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b> </p> <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver.html#resolver-overview-forward-network-to-vpc">How DNS Resolvers on Your Net..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53resolver, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53resolver-2018-04-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53resolver/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8754], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-04-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-01, x-release:v4, title:Amazon Route 53 Resolver, description:<p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names for EC2 instances or Elastic Load Balancing load balancers. Resolver performs recursive lookups against public name servers for all other domain names.</p> <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p> <p> <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b> </p> <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone. For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resol..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53resolver/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53resolver/2018-04-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-04-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53resolver: DataRow\">amazonaws.com:route53resolver</span>", children: [8720, 8721, 8755], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-04-01\nversions: { 2018-04-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-04-01, x-release:v4, title:Amazon Route 53 Resolver, description:<p>When you create a VPC using Amazon VPC, you automatically get DNS resolution within the VPC from Route 53 Resolver. By default, Resolver answers DNS queries for VPC domain names such as domain names for EC2 instances or Elastic Load Balancing load balancers. Resolver performs recursive lookups against public name servers for all other domain names.</p> <p>You can also configure DNS resolution between your VPC and your network over a Direct Connect or VPN connection:</p> <p> <b>Forward DNS queries from resolvers on your network to Route 53 Resolver</b> </p> <p>DNS resolvers on your network can forward DNS queries to Resolver in a specified VPC. This allows your DNS resolvers to easily resolve domain names for Amazon Web Services resources such as EC2 instances or records in a Route 53 private hosted zone. For more information, see <a href="https://docs.aws.amazon.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lex Runtime Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, . \">Amazon Lex provides both build and ru<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8764, 8765], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8768, 8769, 8770, 8771], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8773, 8774], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["runtime.lex"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lex"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410421, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8780], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8760, 8761, 8762, 8763, 8766, 8767, 8772, 8775, 8776, 8777, 8778, 8779, 8781, 8782, 8783], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-28\nx-release: v4\ntitle: Amazon Lex Runtime Service\ndescription: Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, . \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: runtime.lex\nx-aws-signingName: lex\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/lex/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8785, 8786], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/lex/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-28: DataRow\">2016-11-28</span>", children: [8759, 8784, 8787, 8788, 8789, 8790, 8791], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-28, x-release:v4, title:Amazon Lex Runtime Service, description:Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, . , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.lex, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.lex-2016-11-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lex/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8792], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:Amazon Lex Runtime Service, description:Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, . , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FF..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/lex/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex/2016-11-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:runtime.lex: DataRow\">amazonaws.com:runtime.lex</span>", children: [8757, 8758, 8793], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-28\nversions: { 2016-11-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:Amazon Lex Runtime Service, description:Amazon Lex provides both build and runtime endpoints. Each endpoint provides a set of operations (API). Your conversational bot uses the runtime API to understand user utterances (user input text or voice). For example, suppose a user says "I want pizza", your bot sends this input to Amazon Lex using the runtime API. Amazon Lex recognizes that the user request is for the OrderPizza intent (one of the intents defined in the bot). Then Amazon Lex engages in user conversation on behalf of the bot to elicit required information (slot values, such as pizza size and crust type), and then performs fulfillment activity (that you configured when you created the bot). You use the build-time API to create and manage your Amazon Lex bot. For a list of build-time operations, see the build-time API, . , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-08-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-08-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Lex Runtime V2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8802, 8803], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8806, 8807, 8808, 8809], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8811, 8812], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["runtime.lex.v2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["lex"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410422, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8818], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8798, 8799, 8800, 8801, 8804, 8805, 8810, 8813, 8814, 8815, 8816, 8817, 8819, 8820, 8821], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-08-07\nx-release: v4\ntitle: Amazon Lex Runtime V2\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: runtime.lex.v2\nx-aws-signingName: lex\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-08-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/runtime-v2-lex/\">https://docs.aws.amazon.com/runtime-v<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8823, 8824], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/runtime-v2-lex/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-08-07: DataRow\">2020-08-07</span>", children: [8797, 8822, 8825, 8826, 8827, 8828], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2020-08-07, x-release:v4, title:Amazon Lex Runtime V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/runtime-v2-lex/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8829], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-08-07: { added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-07, x-release:v4, title:Amazon Lex Runtime V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/runtime-v2-lex/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.lex.v2/2020-08-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-08-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:runtime.lex.v2: DataRow\">amazonaws.com:runtime.lex.v2</span>", children: [8795, 8796, 8830], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2020-08-07\nversions: { 2020-08-07:{ added:2021-06-18T13:57:32.889Z, info:{ version:2020-08-07, x-release:v4, title:Amazon Lex Runtime V2, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.lex.v2, x-aws-signingName:lex, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.lex.v2-2020-08-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-30T10:12:39.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-05-13"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-30T10:12:39.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-05-13"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon SageMaker Runtime"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: [" The Amazon SageMaker runtime API. "] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8839, 8840], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8843, 8844, 8845, 8846], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8848, 8849], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["runtime.sagemaker"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410423, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8855], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8835, 8836, 8837, 8838, 8841, 8842, 8847, 8850, 8851, 8852, 8853, 8854, 8856, 8857, 8858], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-05-13\nx-release: v4\ntitle: Amazon SageMaker Runtime\ndescription: The Amazon SageMaker runtime API. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: runtime.sagemaker\nx-aws-signingName: sagemaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-05-13<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sagemaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8860, 8861], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sagemaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-05-13: DataRow\">2017-05-13</span>", children: [8834, 8859, 8862, 8863, 8864, 8865, 8866], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-30T10:12:39.000Z\ninfo: { version:2017-05-13, x-release:v4, title:Amazon SageMaker Runtime, description: The Amazon SageMaker runtime API. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.sagemaker, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.sagemaker-2017-05-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-30T10:12:39.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8867], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-05-13: { added:2017-11-30T10:12:39.000Z, info:{ version:2017-05-13, x-release:v4, title:Amazon SageMaker Runtime, description: The Amazon SageMaker runtime API. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.sagemaker, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.sagemaker-2017-05-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-pr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/runtime.sagemaker/2017-05-13/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-05-13: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:runtime.sagemaker: DataRow\">amazonaws.com:runtime.sagemaker</span>", children: [8832, 8833, 8868], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-30T10:12:39.000Z\npreferred: 2017-05-13\nversions: { 2017-05-13:{ added:2017-11-30T10:12:39.000Z, info:{ version:2017-05-13, x-release:v4, title:Amazon SageMaker Runtime, description: The Amazon SageMaker runtime API. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:runtime.sagemaker, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/runtime.sagemaker-2017-05-13.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-30T10:12:39.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2006-03-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2006-03-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["s3"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Storage Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8877, 8878], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8881, 8882, 8883, 8884], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8886, 8887], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["s3"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410424, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8892], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8873, 8874, 8875, 8876, 8879, 8880, 8885, 8888, 8889, 8890, 8891, 8893, 8894, 8895], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2006-03-01\nx-release: s3\ntitle: Amazon Simple Storage Service\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: s3\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2006-03-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/s3/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8897, 8898], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/s3/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2006-03-01: DataRow\">2006-03-01</span>", children: [8872, 8896, 8899, 8900, 8901, 8902, 8903], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2006-03-01, x-release:s3, title:Amazon Simple Storage Service, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3-2006-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8904], rightAlign: false, values: ["<span class=\"formatted\" title=\"2006-03-01: { added:2017-05-02T07:59:53.000Z, info:{ version:2006-03-01, x-release:s3, title:Amazon Simple Storage Service, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3-2006-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3/2006-03-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2006-03-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:s3: DataRow\">amazonaws.com:s3</span>", children: [8870, 8871, 8905], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2006-03-01\nversions: { 2006-03-01:{ added:2017-05-02T07:59:53.000Z, info:{ version:2006-03-01, x-release:s3, title:Amazon Simple Storage Service, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3-2006-03-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Ama... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-08-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-08-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["s3v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS S3 Control"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" Amazon Web Services S3 Control provides access to Amazon S3 control plane actions. \"> Amazon Web Services S3 Control provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8914, 8915], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8918, 8919, 8920, 8921], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8923, 8924], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["s3control"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["s3"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410425, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8930], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8910, 8911, 8912, 8913, 8916, 8917, 8922, 8925, 8926, 8927, 8928, 8929, 8931, 8932, 8933], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-08-20\nx-release: s3v4\ntitle: AWS S3 Control\ndescription: Amazon Web Services S3 Control provides access to Amazon S3 control plane actions. \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: s3control\nx-aws-signingName: s3\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-08-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/s3-control/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8935, 8936], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/s3-control/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-04T20:09:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-08-20: DataRow\">2018-08-20</span>", children: [8909, 8934, 8937, 8938, 8939, 8940, 8941], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-08-20, x-release:s3v4, title:AWS S3 Control, description: Amazon Web Services S3 Control provides access to Amazon S3 control plane actions. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3control, x-aws-signingName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3control-2018-08-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3-control/ }\nupdated: 2020-05-04T20:09:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8942], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-08-20: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-20, x-release:s3v4, title:AWS S3 Control, description: Amazon Web Services S3 Control provides access to Amazon S3 control plane actions. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3control, x-aws-signingName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3control-2018-08-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-catego..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3-control/ }, updated:2020-05-04T20:09:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3control/2018-08-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-08-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:s3control: DataRow\">amazonaws.com:s3control</span>", children: [8907, 8908, 8943], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-08-20\nversions: { 2018-08-20:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-08-20, x-release:s3v4, title:AWS S3 Control, description: Amazon Web Services S3 Control provides access to Amazon S3 control plane actions. , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3control, x-aws-signingName:s3, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3control-2018-08-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/i... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon S3 on Outposts"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon S3 on Outposts provides access to S3 on Outposts operations.\">Amazon S3 on Outposts provides access<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8952, 8953], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8956, 8957, 8958, 8959], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8961, 8962], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["s3outposts"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["s3-outposts"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410426, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [8968], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8948, 8949, 8950, 8951, 8954, 8955, 8960, 8963, 8964, 8965, 8966, 8967, 8969, 8970, 8971], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-25\nx-release: v4\ntitle: Amazon S3 on Outposts\ndescription: Amazon S3 on Outposts provides access to S3 on Outposts operations.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: s3outposts\nx-aws-signingName: s3-outposts\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/s3-outposts/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [8973, 8974], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/s3-outposts/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-25: DataRow\">2017-07-25</span>", children: [8947, 8972, 8975, 8976, 8977, 8978], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2017-07-25, x-release:v4, title:Amazon S3 on Outposts, description:Amazon S3 on Outposts provides access to S3 on Outposts operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3outposts, x-aws-signingName:s3-outposts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3outposts-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3-outposts/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [8979], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-25: { added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:Amazon S3 on Outposts, description:Amazon S3 on Outposts provides access to S3 on Outposts operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3outposts, x-aws-signingName:s3-outposts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3outposts-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categor..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/s3-outposts/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/s3outposts/2017-07-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:s3outposts: DataRow\">amazonaws.com:s3outposts</span>", children: [8945, 8946, 8980], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2017-07-25\nversions: { 2017-07-25:{ added:2021-01-15T15:07:17.488Z, info:{ version:2017-07-25, x-release:v4, title:Amazon S3 on Outposts, description:Amazon S3 on Outposts provides access to S3 on Outposts operations., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:s3outposts, x-aws-signingName:s3-outposts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/s3outposts-2017-07-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/in... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon SageMaker Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Provides APIs for creating and managing Amazon SageMaker resources. </p> <p>Other Resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">Amazon SageMaker Developer Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI Runtime API Reference</a> </p> </li> </ul>\"><p>Provides APIs for creating and man<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [8989, 8990], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [8993, 8994, 8995, 8996], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [8998, 8999], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410427, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9005], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [8985, 8986, 8987, 8988, 8991, 8992, 8997, 9000, 9001, 9002, 9003, 9004, 9006, 9007, 9008], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-24\nx-release: v4\ntitle: Amazon SageMaker Service\ndescription: <p>Provides APIs for creating and managing Amazon SageMaker resources. </p> <p>Other Resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">Amazon SageMaker Developer Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI Runtime API Reference</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sagemaker\nx-aws-signingName: sagemaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sagemaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9010, 9011], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sagemaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-09T06:36:06.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-24: DataRow\">2017-07-24</span>", children: [8984, 9009, 9012, 9013, 9014, 9015, 9016], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-24, x-release:v4, title:Amazon SageMaker Service, description:<p>Provides APIs for creating and managing Amazon SageMaker resources. </p> <p>Other Resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">Amazon SageMaker Developer Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI Runtime API Reference</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-2017-07-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }\nupdated: 2020-05-09T06:36:06.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9017], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-24: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-24, x-release:v4, title:Amazon SageMaker Service, description:<p>Provides APIs for creating and managing Amazon SageMaker resources. </p> <p>Other Resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">Amazon SageMaker Developer Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI Runtime API Reference</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }, updated:2020-05-09T06:36:06.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker/2017-07-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sagemaker: DataRow\">amazonaws.com:sagemaker</span>", children: [8982, 8983, 9018], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-24\nversions: { 2017-07-24:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-24, x-release:v4, title:Amazon SageMaker Service, description:<p>Provides APIs for creating and managing Amazon SageMaker resources. </p> <p>Other Resources:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/whatis.html#first-time-user">Amazon SageMaker Developer Guide</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/augmented-ai/2019-11-07/APIReference/Welcome.html">Amazon Augmented AI Runtime API Reference</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker, x-aws-signingName:sagemaker, x-or... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-07"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-07"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Augmented AI Runtime"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a <i>worker task template</i>, a <i>flow definition</i>, and a <i>human loop</i>.</p> <p>For information about these resources and prerequisites for using Amazon A2I, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-getting-started.html">Get Started with Amazon Augmented AI</a> in the Amazon SageMaker Developer Guide.</p> <p>This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:</p> <ul> <li> <p>Start a human loop with the <code>StartHumanLoop</code> operation when using Amazon A2I with a <i>custom task type</i>. To learn more about the difference between custom and built-in task types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-task-types-general.html">Use Task Types </a>. To learn how to start a human loop using this API, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-start-human-loop.html#a2i-instructions-starthumanloop">Create and Start a Human Loop for a Custom Task Type </a> in the Amazon SageMaker Developer Guide.</p> </li> <li> <p>Manage your human loops. You can list all human loops that you have created, describe individual human loops, and stop and delete human loops. To learn more, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-monitor-humanloop-results.html">Monitor and Manage Your Human Loop </a> in the Amazon SageMaker Developer Guide.</p> </li> </ul> <p>Amazon A2I integrates APIs from various AWS services to create and start human review workflows for those services. To learn how Amazon A2I uses these APIs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-api-references.html">Use APIs in Amazon A2I</a> in the Amazon SageMaker Developer Guide.</p>\"><p>Amazon Augmented AI (Amazon A2I) a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9027, 9028], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9031, 9032, 9033, 9034], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9036, 9037], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sagemaker-a2i-runtime"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410428, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9043], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9023, 9024, 9025, 9026, 9029, 9030, 9035, 9038, 9039, 9040, 9041, 9042, 9044, 9045, 9046], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-11-07\nx-release: v4\ntitle: Amazon Augmented AI Runtime\ndescription: <p>Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a <i>worker task template</i>, a <i>flow definition</i>, and a <i>human loop</i>.</p> <p>For information about these resources and prerequisites for using Amazon A2I, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-getting-started.html">Get Started with Amazon Augmented AI</a> in the Amazon SageMaker Developer Guide.</p> <p>This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:</p> <ul> <li> <p>Start a human loop with the <code>StartHumanLoop</code> operation when using Amazon A2I with a <i>custom task type</i>. To learn more about the difference between custom and built-in task types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-task-types-general.html">Use Task Types </a>. To learn how to start a human loop using this API, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-start-human-loop.html#a2i-instructions-starthumanloop">Create and Start a Human Loop for a Custom Task Type </a> in the Amazon SageMaker Developer Guide.</p> </li> <li> <p>Manage your human loops. You can list all human loops that you have created, describe individual human loops, and stop and delete human loops. To learn more, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-monitor-humanloop-results.html">Monitor and Manage Your Human Loop </a> in the Amazon SageMaker Developer Guide.</p> </li> </ul> <p>Amazon A2I integrates APIs from various AWS services to create and start human review workflows for those services. To learn how Amazon A2I uses these APIs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-api-references.html">Use APIs in Amazon A2I</a> in the Amazon SageMaker Developer Guide.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sagemaker-a2i-runtime\nx-aws-signingName: sagemaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-11-07<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sagemaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9048, 9049], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sagemaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-11-07: DataRow\">2019-11-07</span>", children: [9022, 9047, 9050, 9051, 9052, 9053, 9054], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-11-07, x-release:v4, title:Amazon Augmented AI Runtime, description:<p>Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a <i>worker task template</i>, a <i>flow definition</i>, and a <i>human loop</i>.</p> <p>For information about these resources and prerequisites for using Amazon A2I, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-getting-started.html">Get Started with Amazon Augmented AI</a> in the Amazon SageMaker Developer Guide.</p> <p>This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:</p> <ul> <li> <p>Start a human loop with the <code>StartHumanLoop</code> operation when using Amazon A2I with a <i>custom task type</i>. To learn more about th..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker-a2i-runtime, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-a2i-runtime-2019-11-07.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9055], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-07: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-07, x-release:v4, title:Amazon Augmented AI Runtime, description:<p>Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a <i>worker task template</i>, a <i>flow definition</i>, and a <i>human loop</i>.</p> <p>For information about these resources and prerequisites for using Amazon A2I, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-getting-started.html">Get Started with Amazon Augmented AI</a> in the Amazon SageMaker Developer Guide.</p> <p>This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:</p> <ul> <li> <p>Start a human loop with the <code>StartHumanLoop</code> ope..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-a2i-runtime/2019-11-07/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-07: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sagemaker-a2i-runtime: DataRow\">amazonaws.com:sagemaker-a2i-runtime</span>", children: [9020, 9021, 9056], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-11-07\nversions: { 2019-11-07:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-11-07, x-release:v4, title:Amazon Augmented AI Runtime, description:<p>Amazon Augmented AI (Amazon A2I) adds the benefit of human judgment to any machine learning application. When an AI application can't evaluate data with a high degree of confidence, human reviewers can take over. This human review is called a human review workflow. To create and start a human review workflow, you need three resources: a <i>worker task template</i>, a <i>flow definition</i>, and a <i>human loop</i>.</p> <p>For information about these resources and prerequisites for using Amazon A2I, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/a2i-getting-started.html">Get Started with Amazon Augmented AI</a> in the Amazon SageMaker Developer Guide.</p> <p>This API reference includes information about API actions and data types that you can use to interact with Amazon A2I programmatically. Use this guide to:</p> <ul> <li> <p>Start a human loop w... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-09-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-09-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Sagemaker Edge Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"SageMaker Edge Manager dataplane service for communicating with active agents.\">SageMaker Edge Manager dataplane serv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9065, 9066], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9069, 9070, 9071, 9072], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9074, 9075], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sagemaker-edge"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410429, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9081], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9061, 9062, 9063, 9064, 9067, 9068, 9073, 9076, 9077, 9078, 9079, 9080, 9082, 9083, 9084], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-09-23\nx-release: v4\ntitle: Amazon Sagemaker Edge Manager\ndescription: SageMaker Edge Manager dataplane service for communicating with active agents.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sagemaker-edge\nx-aws-signingName: sagemaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-09-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sagemaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9086, 9087], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sagemaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-09-23: DataRow\">2020-09-23</span>", children: [9060, 9085, 9088, 9089, 9090, 9091], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-09-23, x-release:v4, title:Amazon Sagemaker Edge Manager, description:SageMaker Edge Manager dataplane service for communicating with active agents., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker-edge, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-edge-2020-09-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9092], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-09-23: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-09-23, x-release:v4, title:Amazon Sagemaker Edge Manager, description:SageMaker Edge Manager dataplane service for communicating with active agents., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker-edge, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-edge-2020-09-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-edge/2020-09-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-09-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sagemaker-edge: DataRow\">amazonaws.com:sagemaker-edge</span>", children: [9058, 9059, 9093], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-09-23\nversions: { 2020-09-23:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-09-23, x-release:v4, title:Amazon Sagemaker Edge Manager, description:SageMaker Edge Manager dataplane service for communicating with active agents., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker-edge, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-edge-2020-09-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon SageMaker Feature Store Runtime"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.</p> <p>Use the following operations to configure your <code>OnlineStore</code> and <code>OfflineStore</code> features, and to create and manage feature groups:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a> </p> </li> </ul>\"><p>Contains all data plane API operat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9102, 9103], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9106, 9107, 9108, 9109], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9111, 9112], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sagemaker-featurestore-runtime"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sagemaker"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410430, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9118], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9098, 9099, 9100, 9101, 9104, 9105, 9110, 9113, 9114, 9115, 9116, 9117, 9119, 9120, 9121], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-01\nx-release: v4\ntitle: Amazon SageMaker Feature Store Runtime\ndescription: <p>Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.</p> <p>Use the following operations to configure your <code>OnlineStore</code> and <code>OfflineStore</code> features, and to create and manage feature groups:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sagemaker-featurestore-runtime\nx-aws-signingName: sagemaker\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sagemaker/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9123, 9124], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sagemaker/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-01: DataRow\">2020-07-01</span>", children: [9097, 9122, 9125, 9126, 9127, 9128], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-07-01, x-release:v4, title:Amazon SageMaker Feature Store Runtime, description:<p>Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.</p> <p>Use the following operations to configure your <code>OnlineStore</code> and <code>OfflineStore</code> features, and to create and manage feature groups:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sagemaker-featurestore-runtime, x-aws-signingName:sagemaker, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sagemaker-featurestore-runtime-2020-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9129], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-01, x-release:v4, title:Amazon SageMaker Feature Store Runtime, description:<p>Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.</p> <p>Use the following operations to configure your <code>OnlineStore</code> and <code>OfflineStore</code> features, and to create and manage feature groups:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a> </p> </li> ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sagemaker/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sagemaker-featurestore-runtime/2020-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sagemaker-featurestore-runtime: DataRow\">amazonaws.com:sagemaker-featurestore-runtime</span>", children: [9095, 9096, 9130], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-07-01\nversions: { 2020-07-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-01, x-release:v4, title:Amazon SageMaker Feature Store Runtime, description:<p>Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.</p> <p>Use the following operations to configure your <code>OnlineStore</code> and <code>OfflineStore</code> features, and to create and manage feature groups:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Savings Plans"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Savings Plans are a pricing model that offer significant savings on AWS usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage, in USD per hour, for a term of 1 or 3 years, and receive a lower price for that usage. For more information, see the <a href="https://docs.aws.amazon.com/savingsplans/latest/userguide/">AWS Savings Plans User Guide</a>.\">Savings Plans are a pricing model tha<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9139, 9140], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9143, 9144, 9145, 9146], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9148, 9149], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["savingsplans"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410431, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9154], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9135, 9136, 9137, 9138, 9141, 9142, 9147, 9150, 9151, 9152, 9153, 9155, 9156, 9157], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-06-28\nx-release: v4\ntitle: AWS Savings Plans\ndescription: Savings Plans are a pricing model that offer significant savings on AWS usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage, in USD per hour, for a term of 1 or 3 years, and receive a lower price for that usage. For more information, see the <a href="https://docs.aws.amazon.com/savingsplans/latest/userguide/">AWS Savings Plans User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: savingsplans\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-06-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/savingsplans/\">https://docs.aws.amazon.com/savingspl<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9159, 9160], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/savingsplans/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-06-28: DataRow\">2019-06-28</span>", children: [9134, 9158, 9161, 9162, 9163, 9164, 9165], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-06-28, x-release:v4, title:AWS Savings Plans, description:Savings Plans are a pricing model that offer significant savings on AWS usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage, in USD per hour, for a term of 1 or 3 years, and receive a lower price for that usage. For more information, see the <a href="https://docs.aws.amazon.com/savingsplans/latest/userguide/">AWS Savings Plans User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:savingsplans, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/savingsplans-2019-06-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/savingsplans/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9166], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-28, x-release:v4, title:AWS Savings Plans, description:Savings Plans are a pricing model that offer significant savings on AWS usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage, in USD per hour, for a term of 1 or 3 years, and receive a lower price for that usage. For more information, see the <a href="https://docs.aws.amazon.com/savingsplans/latest/userguide/">AWS Savings Plans User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:savingsplans, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/savingsplans/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/savingsplans/2019-06-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:savingsplans: DataRow\">amazonaws.com:savingsplans</span>", children: [9132, 9133, 9167], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-06-28\nversions: { 2019-06-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-28, x-release:v4, title:AWS Savings Plans, description:Savings Plans are a pricing model that offer significant savings on AWS usage (for example, on Amazon EC2 instances). You commit to a consistent amount of usage, in USD per hour, for a term of 1 or 3 years, and receive a lower price for that usage. For more information, see the <a href="https://docs.aws.amazon.com/savingsplans/latest/userguide/">AWS Savings Plans User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:savingsplans, x-origin:[1 x 4] { contentType:application/json, url:https://ra... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Schemas"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon EventBridge Schema Registry"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9176, 9177], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9180, 9181, 9182, 9183], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9185, 9186], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["schemas"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["schemas"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410432, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9192], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9172, 9173, 9174, 9175, 9178, 9179, 9184, 9187, 9188, 9189, 9190, 9191, 9193, 9194, 9195], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-02\nx-release: v4\ntitle: Schemas\ndescription: Amazon EventBridge Schema Registry\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: schemas\nx-aws-signingName: schemas\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/schemas/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9197, 9198], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/schemas/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-02: DataRow\">2019-12-02</span>", children: [9171, 9196, 9199, 9200, 9201, 9202, 9203], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-12-02, x-release:v4, title:Schemas, description:Amazon EventBridge Schema Registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:schemas, x-aws-signingName:schemas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/schemas-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/schemas/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9204], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-02, x-release:v4, title:Schemas, description:Amazon EventBridge Schema Registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:schemas, x-aws-signingName:schemas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/schemas-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/schemas/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/schemas/2019-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:schemas: DataRow\">amazonaws.com:schemas</span>", children: [9169, 9170, 9205], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-12-02\nversions: { 2019-12-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-12-02, x-release:v4, title:Schemas, description:Amazon EventBridge Schema Registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:schemas, x-aws-signingName:schemas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/schemas-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-pre... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2009-04-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2009-04-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v2"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon SimpleDB"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <p> Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more information. </p>\">Amazon SimpleDB is a web service prov<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9214, 9215], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9218, 9219, 9220, 9221], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9223, 9224], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sdb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410433, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9229], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9210, 9211, 9212, 9213, 9216, 9217, 9222, 9225, 9226, 9227, 9228, 9230, 9231, 9232], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2009-04-15\nx-release: v2\ntitle: Amazon SimpleDB\ndescription: Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <p> Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more information. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sdb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2009-04-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sdb/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9234, 9235], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sdb/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2009-04-15: DataRow\">2009-04-15</span>", children: [9209, 9233, 9236, 9237, 9238, 9239, 9240], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2009-04-15, x-release:v2, title:Amazon SimpleDB, description:Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <p> Visit <a href="http://aws.amazon.com/simpledb/">http://aws.amazon.com/simpledb/</a> for more information. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sdb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sdb-2009-04-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sdb/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9241], rightAlign: false, values: ["<span class=\"formatted\" title=\"2009-04-15: { added:2017-05-02T07:59:53.000Z, info:{ version:2009-04-15, x-release:v2, title:Amazon SimpleDB, description:Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <p> Visit <a href="http://aws.amazon.com..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sdb/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sdb/2009-04-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2009-04-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sdb: DataRow\">amazonaws.com:sdb</span>", children: [9207, 9208, 9242], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2009-04-15\nversions: { 2009-04-15:{ added:2017-05-02T07:59:53.000Z, info:{ version:2009-04-15, x-release:v2, title:Amazon SimpleDB, description:Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-17"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-17"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Secrets Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Web Services Secrets Manager</fullname> <p>Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets.</p> <p>This guide provides descriptions of the Secrets Manager API. For more information about using this service, see the <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/introduction.html">Amazon Web Services Secrets Manager User Guide</a>.</p> <p> <b>API Version</b> </p> <p>This version of the Secrets Manager API Reference documents the Secrets Manager API version 2017-10-17.</p> <note> <p>As an alternative to using the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .NET, iOS, and Android. The SDKs provide a convenient way to create programmatic access to Amazon Web Services Secrets Manager. For example, the SDKs provide cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including downloading and installing them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note> <p>We recommend you use the Amazon Web Services SDKs to make programmatic API calls to Secrets Manager. However, you also can use the Secrets Manager HTTP Query API to make direct calls to the Secrets Manager web service. To learn more about the Secrets Manager HTTP Query API, see <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/query-requests.html">Making Query Requests</a> in the <i>Amazon Web Services Secrets Manager User Guide</i>. </p> <p>Secrets Manager API supports GET and POST requests for all actions, and doesn't require you to use GET for some actions and POST for others. However, GET requests are subject to the limitation size of a URL. Therefore, for operations that require larger sizes, use a POST request.</p> <p> <b>Support and Feedback for Amazon Web Services Secrets Manager</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:awssecretsmanager-feedback@amazon.com">awssecretsmanager-feedback@amazon.com</a>, or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=296">Amazon Web Services Secrets Manager Discussion Forum</a>. For more information about the Amazon Web Services Discussion Forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>How examples are presented</b> </p> <p>The JSON that Amazon Web Services Secrets Manager expects as your request parameters and the service returns as a response to HTTP query requests contain single, long strings without line breaks or white space formatting. The JSON shown in the examples displays the code formatted with both line breaks and white space to improve readability. When example input parameters can also cause long strings extending beyond the screen, you can insert line breaks to enhance readability. You should always submit the input as a single JSON text string.</p> <p> <b>Logging API Requests</b> </p> <p>Amazon Web Services Secrets Manager supports Amazon Web Services CloudTrail, a service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. By using information that's collected by Amazon Web Services CloudTrail, you can determine the requests successfully made to Secrets Manager, who made the request, when it was made, and so on. For more about Amazon Web Services Secrets Manager and support for Amazon Web Services CloudTrail, see <a href="http://docs.aws.amazon.com/secretsmanager/latest/userguide/monitoring.html#monitoring_cloudtrail">Logging Amazon Web Services Secrets Manager Events with Amazon Web Services CloudTrail</a> in the <i>Amazon Web Services Secrets Manager User Guide</i>. To learn more about CloudTrail, including enabling it and find your log files, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html">Amazon Web Services CloudTrail User Guide</a>.</p>\"><fullname>Amazon Web Services Secrets<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9251, 9252], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9255, 9256, 9257, 9258], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9260, 9261], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["secretsmanager"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["secretsmanager"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410434, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9267], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9247, 9248, 9249, 9250, 9253, 9254, 9259, 9262, 9263, 9264, 9265, 9266, 9268, 9269, 9270], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-17\nx-release: v4\ntitle: AWS Secrets Manager\ndescription: <fullname>Amazon Web Services Secrets Manager</fullname> <p>Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets.</p> <p>This guide provides descriptions of the Secrets Manager API. For more information about using this service, see the <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/introduction.html">Amazon Web Services Secrets Manager User Guide</a>.</p> <p> <b>API Version</b> </p> <p>This version of the Secrets Manager API Reference documents the Secrets Manager API version 2017-10-17.</p> <note> <p>As an alternative to using the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .NET, iOS, and Android. The SDKs provide a convenient way to create programmatic access to Amazon Web Services Secrets Manager. For example, the SDKs provide cryptographically signing requests, managing errors, and retrying requests automatically. For more information about the Amazon Web Services SDKs, including downloading and installing them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note> <p>We recommend you use the Amazon Web Services SDKs to make programmatic API calls to Secrets Manager. However, you also can use the Secrets Manager HTTP Query API to make direct calls to the Secrets Manager web service. To learn more about the Secrets Manager HTTP Query API, see <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/query-requests.html">Making Query Requests</a> in the <i>Amazon Web Services Secrets Manager User Guide</i>. </p> <p>Secrets Manager API supports GET and POST requests for all actions, and doesn't require you to use GET for some actions and POST for others. However, GET requests are subject to the limitation size of a URL. Therefore, for operations that require larger sizes, use a POST request.</p> <p> <b>Support and Feedback for Amazon Web Services Secrets Manager</b> </p> <p>We welcome your feedback. Send your comments to <a href="mailto:awssecretsmanager-feedback@amazon.com">awssecretsmanager-feedback@amazon.com</a>, or post your feedback and questions in the <a href="http://forums.aws.amazon.com/forum.jspa?forumID=296">Amazon Web Services Secrets Manager Discussion Forum</a>. For more information about the Amazon Web Services Discussion Forums, see <a href="http://forums.aws.amazon.com/help.jspa">Forums Help</a>.</p> <p> <b>How examples are presented</b> </p> <p>The JSON that Amazon Web Services Secrets Manager expects as your request parameters and the service returns as a response to HTTP query requests contain single, long strings without line breaks or white space formatting. The JSON shown in the examples displays the code formatted with both line breaks and white space to improve readability. When example input parameters can also cause long strings extending beyond the screen, you can insert line breaks to enhance readability. You should always submit the input as a single JSON text string.</p> <p> <b>Logging API Requests</b> </p> <p>Amazon Web Services Secrets Manager supports Amazon Web Services CloudTrail, a service that records Amazon Web Services API calls for your Amazon Web Services account and delivers log files to an Amazon S3 bucket. By using information that's collected by Amazon Web Services CloudTrail, you can determine the requests successfully made to Secrets Manager, who made the request, when it was made, and so on. For more about Amazon Web Services Secrets Manager and support for Amazon Web Services CloudTrail, see <a href="http://docs.aws.amazon.com/secretsmanager/latest/userguide/monitoring.html#monitoring_cloudtrail">Logging Amazon Web Services Secrets Manager Events with Amazon Web Services CloudTrail</a> in the <i>Amazon Web Services Secrets Manager User Guide</i>. To learn more about CloudTrail, including enabling it and find your log files, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html">Amazon Web Services CloudTrail User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: secretsmanager\nx-aws-signingName: secretsmanager\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-17<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/secretsmanager/\">https://docs.aws.amazon.com/secretsma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9272, 9273], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/secretsmanager/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-17: DataRow\">2017-10-17</span>", children: [9246, 9271, 9274, 9275, 9276, 9277, 9278], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-17, x-release:v4, title:AWS Secrets Manager, description:<fullname>Amazon Web Services Secrets Manager</fullname> <p>Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets.</p> <p>This guide provides descriptions of the Secrets Manager API. For more information about using this service, see the <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/introduction.html">Amazon Web Services Secrets Manager User Guide</a>.</p> <p> <b>API Version</b> </p> <p>This version of the Secrets Manager API Reference documents the Secrets Manager API version 2017-10-17.</p> <note> <p>As an alternative to using the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .NET, iOS, and Android. The SDKs provide a convenient way to create programmatic access to Amazon Web Services Secrets Manager. For example, the SDKs provide cryptographically signing requests, managing errors, and ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:secretsmanager, x-aws-signingName:secretsmanager, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/secretsmanager-2017-10-17.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/secretsmanager/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9279], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-17: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-17, x-release:v4, title:AWS Secrets Manager, description:<fullname>Amazon Web Services Secrets Manager</fullname> <p>Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets.</p> <p>This guide provides descriptions of the Secrets Manager API. For more information about using this service, see the <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/introduction.html">Amazon Web Services Secrets Manager User Guide</a>.</p> <p> <b>API Version</b> </p> <p>This version of the Secrets Manager API Reference documents the Secrets Manager API version 2017-10-17.</p> <note> <p>As an alternative to using the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .NET, iOS, and Android. The SDKs provide a convenient way to create programmatic access to Amazon Web Services Secrets Manager. For example,..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/secretsmanager/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/secretsmanager/2017-10-17/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-17: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:secretsmanager: DataRow\">amazonaws.com:secretsmanager</span>", children: [9244, 9245, 9280], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-17\nversions: { 2017-10-17:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-17, x-release:v4, title:AWS Secrets Manager, description:<fullname>Amazon Web Services Secrets Manager</fullname> <p>Amazon Web Services Secrets Manager provides a service to enable you to store, manage, and retrieve, secrets.</p> <p>This guide provides descriptions of the Secrets Manager API. For more information about using this service, see the <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/introduction.html">Amazon Web Services Secrets Manager User Guide</a>.</p> <p> <b>API Version</b> </p> <p>This version of the Secrets Manager API Reference documents the Secrets Manager API version 2017-10-17.</p> <note> <p>As an alternative to using the API, you can use one of the Amazon Web Services SDKs, which consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .NET, iOS, and Android. The SDKs provide a convenient way to create programmatic access to Amazon Web... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-10-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-10-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS SecurityHub"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Security Hub provides you with a comprehensive view of the security state of your Amazon Web Services environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from Amazon Web Services accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the <i>Security Hub<a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html">User Guide</a> </i>.</p> <p>When you use operations in the Security Hub API, the requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any configuration or settings change that results from the operation is applied only to that Region. To make the same change in other Regions, execute the same command for each Region to apply the change to.</p> <p>For example, if your Region is set to <code>us-west-2</code>, when you use <code>CreateMembers</code> to add a member account to Security Hub, the association of the member account with the administrator account is created only in the <code>us-west-2</code> Region. Security Hub must be enabled for the member account in the same Region that the invitation was sent from.</p> <p>The following throttling limits apply to using Security Hub API operations.</p> <ul> <li> <p> <code>BatchEnableStandards</code> - <code>RateLimit</code> of 1 request per second, <code>BurstLimit</code> of 1 request per second.</p> </li> <li> <p> <code>GetFindings</code> - <code>RateLimit</code> of 3 requests per second. <code>BurstLimit</code> of 6 requests per second.</p> </li> <li> <p> <code>UpdateFindings</code> - <code>RateLimit</code> of 1 request per second. <code>BurstLimit</code> of 5 requests per second.</p> </li> <li> <p> <code>UpdateStandardsControl</code> - <code>RateLimit</code> of 1 request per second, <code>BurstLimit</code> of 5 requests per second.</p> </li> <li> <p>All other operations - <code>RateLimit</code> of 10 requests per second. <code>BurstLimit</code> of 30 requests per second.</p> </li> </ul>\"><p>Security Hub provides you with a c<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9289, 9290], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9293, 9294, 9295, 9296], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9298, 9299], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["securityhub"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["securityhub"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410435, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9305], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9285, 9286, 9287, 9288, 9291, 9292, 9297, 9300, 9301, 9302, 9303, 9304, 9306, 9307, 9308], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-10-26\nx-release: v4\ntitle: AWS SecurityHub\ndescription: <p>Security Hub provides you with a comprehensive view of the security state of your Amazon Web Services environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from Amazon Web Services accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the <i>Security Hub<a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html">User Guide</a> </i>.</p> <p>When you use operations in the Security Hub API, the requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any configuration or settings change that results from the operation is applied only to that Region. To make the same change in other Regions, execute the same command for each Region to apply the change to.</p> <p>For example, if your Region is set to <code>us-west-2</code>, when you use <code>CreateMembers</code> to add a member account to Security Hub, the association of the member account with the administrator account is created only in the <code>us-west-2</code> Region. Security Hub must be enabled for the member account in the same Region that the invitation was sent from.</p> <p>The following throttling limits apply to using Security Hub API operations.</p> <ul> <li> <p> <code>BatchEnableStandards</code> - <code>RateLimit</code> of 1 request per second, <code>BurstLimit</code> of 1 request per second.</p> </li> <li> <p> <code>GetFindings</code> - <code>RateLimit</code> of 3 requests per second. <code>BurstLimit</code> of 6 requests per second.</p> </li> <li> <p> <code>UpdateFindings</code> - <code>RateLimit</code> of 1 request per second. <code>BurstLimit</code> of 5 requests per second.</p> </li> <li> <p> <code>UpdateStandardsControl</code> - <code>RateLimit</code> of 1 request per second, <code>BurstLimit</code> of 5 requests per second.</p> </li> <li> <p>All other operations - <code>RateLimit</code> of 10 requests per second. <code>BurstLimit</code> of 30 requests per second.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: securityhub\nx-aws-signingName: securityhub\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-10-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/securityhub/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9310, 9311], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/securityhub/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-10-26: DataRow\">2018-10-26</span>", children: [9284, 9309, 9312, 9313, 9314, 9315, 9316], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-10-26, x-release:v4, title:AWS SecurityHub, description:<p>Security Hub provides you with a comprehensive view of the security state of your Amazon Web Services environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from Amazon Web Services accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the <i>Security Hub<a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html">User Guide</a> </i>.</p> <p>When you use operations in the Security Hub API, the requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any configuration or settings change that results from the operation is applied only to that Region. To make the same..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:securityhub, x-aws-signingName:securityhub, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/securityhub-2018-10-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/securityhub/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9317], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-10-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-26, x-release:v4, title:AWS SecurityHub, description:<p>Security Hub provides you with a comprehensive view of the security state of your Amazon Web Services environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from Amazon Web Services accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the <i>Security Hub<a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html">User Guide</a> </i>.</p> <p>When you use operations in the Security Hub API, the requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any configuration or settings change that resu..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/securityhub/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/securityhub/2018-10-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-10-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:securityhub: DataRow\">amazonaws.com:securityhub</span>", children: [9282, 9283, 9318], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-10-26\nversions: { 2018-10-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-10-26, x-release:v4, title:AWS SecurityHub, description:<p>Security Hub provides you with a comprehensive view of the security state of your Amazon Web Services environment and resources. It also provides you with the readiness status of your environment based on controls from supported security standards. Security Hub collects security data from Amazon Web Services accounts, services, and integrated third-party products and helps you analyze security trends in your environment to identify the highest priority security issues. For more information about Security Hub, see the <i>Security Hub<a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html">User Guide</a> </i>.</p> <p>When you use operations in the Security Hub API, the requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any con... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-09-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-09-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWSServerlessApplicationRepository"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless applications,\n see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of \n all levels can get started with serverless computing without needing to learn anything new. You can use category \n keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. \n You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, \n configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sharing them publicly with the community at large, or privately\n within your team or across your organization. To publish a serverless application (or app), you can use the\n AWS Management Console, AWS Command Line Interface (AWS CLI), or AWS SDKs to upload the code. Along with the\n code, you upload a simple manifest file, also known as the AWS Serverless Application Model (AWS SAM) template.\n For more information about AWS SAM, see AWS Serverless Application Model (AWS SAM) on the AWS Labs\n GitHub repository.</p><p>The AWS Serverless Application Repository Developer Guide contains more information about the two developer\n experiences available:</p><ul>\n <li>\n <p>Consuming Applications – Browse for applications and view information about them, including\n source code and readme files. Also install, configure, and deploy applications of your choosing. </p>\n <p>Publishing Applications – Configure and upload applications to make them available to other\n developers, and publish new versions of applications. </p>\n </li>\n </ul>\"><p>The AWS Serverless Application Rep<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9327, 9328], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9331, 9332, 9333, 9334], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9336, 9337], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["serverlessrepo"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["serverlessrepo"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410436, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9343], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9323, 9324, 9325, 9326, 9329, 9330, 9335, 9338, 9339, 9340, 9341, 9342, 9344, 9345, 9346], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-09-08\nx-release: v4\ntitle: AWSServerlessApplicationRepository\ndescription: <p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless applications,\n see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of \n all levels can get started with serverless computing without needing to learn anything new. You can use category \n keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. \n You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, \n configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sharing them publicly with the community at large, or privately\n within your team or across your organization. To publish a serverless application (or app), you can use the\n AWS Management Console, AWS Command Line Interface (AWS CLI), or AWS SDKs to upload the code. Along with the\n code, you upload a simple manifest file, also known as the AWS Serverless Application Model (AWS SAM) template.\n For more information about AWS SAM, see AWS Serverless Application Model (AWS SAM) on the AWS Labs\n GitHub repository.</p><p>The AWS Serverless Application Repository Developer Guide contains more information about the two developer\n experiences available:</p><ul>\n <li>\n <p>Consuming Applications – Browse for applications and view information about them, including\n source code and readme files. Also install, configure, and deploy applications of your choosing. </p>\n <p>Publishing Applications – Configure and upload applications to make them available to other\n developers, and publish new versions of applications. </p>\n </li>\n </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: serverlessrepo\nx-aws-signingName: serverlessrepo\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-09-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/serverlessrepo/\">https://docs.aws.amazon.com/serverles<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9348, 9349], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/serverlessrepo/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-09-08: DataRow\">2017-09-08</span>", children: [9322, 9347, 9350, 9351, 9352, 9353, 9354], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-09-08, x-release:v4, title:AWSServerlessApplicationRepository, description:<p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless applications,\n see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of \n all levels can get started with serverless computing without needing to learn anything new. You can use category \n keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. \n You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, \n configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sharing them publicly with the community at large, or privately\n within your team or across your organization. To publish a serverless ap..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:serverlessrepo, x-aws-signingName:serverlessrepo, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/serverlessrepo-2017-09-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/serverlessrepo/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9355], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-09-08: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-08, x-release:v4, title:AWSServerlessApplicationRepository, description:<p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless applications,\n see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of \n all levels can get started with serverless computing without needing to learn anything new. You can use category \n keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. \n You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, \n configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sharing them publicly with the community ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/serverlessrepo/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-09-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:serverlessrepo: DataRow\">amazonaws.com:serverlessrepo</span>", children: [9320, 9321, 9356], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-09-08\nversions: { 2017-09-08:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-09-08, x-release:v4, title:AWSServerlessApplicationRepository, description:<p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find\n and deploy serverless applications in the AWS Cloud. For more information about serverless applications,\n see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of \n all levels can get started with serverless computing without needing to learn anything new. You can use category \n keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots. \n You can also search for applications by name, publisher, or event source. To use an application, you simply choose it, \n configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sh... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Service Quotas"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"With Service Quotas, you can view and manage your quotas easily as your AWS workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>.\">With Service Quotas, you can view and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9365, 9366], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9369, 9370, 9371, 9372], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9374, 9375], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["service-quotas"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410437, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9380], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9361, 9362, 9363, 9364, 9367, 9368, 9373, 9376, 9377, 9378, 9379, 9381, 9382, 9383], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-06-24\nx-release: v4\ntitle: Service Quotas\ndescription: With Service Quotas, you can view and manage your quotas easily as your AWS workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: service-quotas\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-06-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/servicequotas/\">https://docs.aws.amazon.com/servicequ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9385, 9386], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/servicequotas/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-06-24: DataRow\">2019-06-24</span>", children: [9360, 9384, 9387, 9388, 9389, 9390, 9391], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-06-24, x-release:v4, title:Service Quotas, description:With Service Quotas, you can view and manage your quotas easily as your AWS workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:service-quotas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/service-quotas-2019-06-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicequotas/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9392], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-24: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-24, x-release:v4, title:Service Quotas, description:With Service Quotas, you can view and manage your quotas easily as your AWS workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:service-quotas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/service-quotas-2019-06-24.normal.js..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicequotas/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/service-quotas/2019-06-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:service-quotas: DataRow\">amazonaws.com:service-quotas</span>", children: [9358, 9359, 9393], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-06-24\nversions: { 2019-06-24:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-24, x-release:v4, title:Service Quotas, description:With Service Quotas, you can view and manage your quotas easily as your AWS workloads grow. Quotas, also referred to as limits, are the maximum number of resources that you can create in your AWS account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:service-quotas, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-12-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-12-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Service Catalog"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Service Catalog</fullname> <p> <a href="https://aws.amazon.com/servicecatalog/">AWS Service Catalog</a> enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in <a href="http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html">AWS Service Catalog Concepts</a>.</p>\"><fullname>AWS Service Catalog</fullna<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9402, 9403], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9406, 9407, 9408, 9409], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9411, 9412], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["servicecatalog"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410438, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9417], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9398, 9399, 9400, 9401, 9404, 9405, 9410, 9413, 9414, 9415, 9416, 9418, 9419, 9420], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-12-10\nx-release: v4\ntitle: AWS Service Catalog\ndescription: <fullname>AWS Service Catalog</fullname> <p> <a href="https://aws.amazon.com/servicecatalog/">AWS Service Catalog</a> enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in <a href="http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html">AWS Service Catalog Concepts</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: servicecatalog\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-12-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/servicecatalog/\">https://docs.aws.amazon.com/serviceca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9422, 9423], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/servicecatalog/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-28T08:15:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-12-10: DataRow\">2015-12-10</span>", children: [9397, 9421, 9424, 9425, 9426, 9427, 9428], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-12-10, x-release:v4, title:AWS Service Catalog, description:<fullname>AWS Service Catalog</fullname> <p> <a href="https://aws.amazon.com/servicecatalog/">AWS Service Catalog</a> enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in <a href="http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html">AWS Service Catalog Concepts</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/servicecatalog-2015-12-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicecatalog/ }\nupdated: 2020-03-28T08:15:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9429], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-12-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-10, x-release:v4, title:AWS Service Catalog, description:<fullname>AWS Service Catalog</fullname> <p> <a href="https://aws.amazon.com/servicecatalog/">AWS Service Catalog</a> enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in <a href="http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html">AWS Service Catalog Concepts</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog, x-origin:[1 x 4] { contentType:applica..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicecatalog/ }, updated:2020-03-28T08:15:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog/2015-12-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-12-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:servicecatalog: DataRow\">amazonaws.com:servicecatalog</span>", children: [9395, 9396, 9430], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-12-10\nversions: { 2015-12-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-12-10, x-release:v4, title:AWS Service Catalog, description:<fullname>AWS Service Catalog</fullname> <p> <a href="https://aws.amazon.com/servicecatalog/">AWS Service Catalog</a> enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in <a href="http://docs.aws.amazon.com/servicecatalog/latest/adminguide/what-is_concepts.html">AWS Service Catalog Concepts</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog,... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-06-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-06-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Service Catalog App Registry"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\" Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.\"> Amazon Web Services Service Catalog <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9439, 9440], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9443, 9444, 9445, 9446], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9448, 9449], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["servicecatalog-appregistry"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["servicecatalog"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410439, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9455], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9435, 9436, 9437, 9438, 9441, 9442, 9447, 9450, 9451, 9452, 9453, 9454, 9456, 9457, 9458], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-06-24\nx-release: v4\ntitle: AWS Service Catalog App Registry\ndescription: Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: servicecatalog-appregistry\nx-aws-signingName: servicecatalog\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-06-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/servicecatalog-appregistry/\">https://docs.aws.amazon.com/serviceca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9460, 9461], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/servicecatalog-appregistry/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-06-24: DataRow\">2020-06-24</span>", children: [9434, 9459, 9462, 9463, 9464, 9465], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-06-24, x-release:v4, title:AWS Service Catalog App Registry, description: Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog-appregistry, x-aws-signingName:servicecatalog, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/servicecatalog-appregistry-2020-06-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicecatalog-appregistry/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9466], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-06-24: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-06-24, x-release:v4, title:AWS Service Catalog App Registry, description: Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog-appregistry, x-aws-signingName:servicecatalog, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/servicecatalog-appr..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicecatalog-appregistry/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicecatalog-appregistry/2020-06-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-06-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:servicecatalog-appregistry: DataRow\">amazonaws.com:servicecatalog-appregistry</span>", children: [9432, 9433, 9467], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-06-24\nversions: { 2020-06-24:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-06-24, x-release:v4, title:AWS Service Catalog App Registry, description: Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicecatalog-appregistry, x-aws-signingName:servicecatalog, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-03-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-03-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Cloud Map"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Cloud Map</fullname> <p>With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API to register the instance with Cloud Map. For public or private DNS namespaces, Cloud Map automatically creates DNS records and an optional health check. Clients that submit public or private DNS queries, or HTTP requests, for the service receive an answer that contains up to eight healthy records. </p>\"><fullname>Cloud Map</fullname> <p>Wit<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9476, 9477], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9480, 9481, 9482, 9483], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9485, 9486], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["servicediscovery"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410440, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9491], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9472, 9473, 9474, 9475, 9478, 9479, 9484, 9487, 9488, 9489, 9490, 9492, 9493, 9494], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-03-14\nx-release: v4\ntitle: AWS Cloud Map\ndescription: <fullname>Cloud Map</fullname> <p>With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API to register the instance with Cloud Map. For public or private DNS namespaces, Cloud Map automatically creates DNS records and an optional health check. Clients that submit public or private DNS queries, or HTTP requests, for the service receive an answer that contains up to eight healthy records. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: servicediscovery\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-03-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/servicediscovery/\">https://docs.aws.amazon.com/servicedi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9496, 9497], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/servicediscovery/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-03-14: DataRow\">2017-03-14</span>", children: [9471, 9495, 9498, 9499, 9500, 9501, 9502], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-03-14, x-release:v4, title:AWS Cloud Map, description:<fullname>Cloud Map</fullname> <p>With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API to register the instance with Cloud Map. For public or private DNS namespaces, Cloud Map automatically creates DNS records and an optional health check. Clients that submit public or private DNS queries, or HTTP requests, for the service receive an answer that contains up to eight healthy records. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:servicediscovery, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/servicediscovery-2017-03-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicediscovery/ }\nupdated: 2020-04-29T20:05:58.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9503], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-03-14: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-14, x-release:v4, title:AWS Cloud Map, description:<fullname>Cloud Map</fullname> <p>With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API to register the instance with Cloud Map. For public or private DNS namespaces, Cloud Map automatically creates DNS records and an optional health check. Clients that submit public or private DNS queries, or HTTP requests, for the service receive an answer that contains up to eight healthy records. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amaz..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/servicediscovery/ }, updated:2020-04-29T20:05:58.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/servicediscovery/2017-03-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-03-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:servicediscovery: DataRow\">amazonaws.com:servicediscovery</span>", children: [9469, 9470, 9504], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-03-14\nversions: { 2017-03-14:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-03-14, x-release:v4, title:AWS Cloud Map, description:<fullname>Cloud Map</fullname> <p>With Cloud Map, you can configure public DNS, private DNS, or HTTP namespaces that your microservice applications run in. When an instance becomes available, you can call the Cloud Map API to register the instance with Cloud Map. For public or private DNS namespaces, Cloud Map automatically creates DNS records and an optional health check. Clients that submit public or private DNS queries, or HTTP requests, for the service receive an answer that contains up to eight healthy records. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apac... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-09-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-09-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Email Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon SES API v2</fullname> <p>Welcome to the Amazon SES API v2 Reference. This guide provides information about the Amazon SES API v2, including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon SES</a> is an AWS service that you can use to send email messages to your customers.</p> <p>If you're new to Amazon SES API v2, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer Guide</a>. The <i>Amazon SES Developer Guide</i> provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p> <p>The Amazon SES API v2 is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#ses_region">AWS Service Endpoints</a> in the <i>Amazon Web Services General Reference</i>. To learn more about AWS Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html">Managing AWS Regions</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>In each Region, AWS maintains multiple Availability Zones. These Availability Zones are physically isolated from each other, but are united by private, low-latency, high-throughput, and highly redundant network connections. These Availability Zones enable us to provide very high levels of availability and redundancy, while also minimizing latency. To learn more about the number of Availability Zones that are available in each Region, see <a href="http://aws.amazon.com/about-aws/global-infrastructure/">AWS Global Infrastructure</a>.</p>\"><fullname>Amazon SES API v2</fullname<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9513, 9514], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9517, 9518, 9519, 9520], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9522, 9523], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sesv2"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ses"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410441, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9529], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9509, 9510, 9511, 9512, 9515, 9516, 9521, 9524, 9525, 9526, 9527, 9528, 9530, 9531, 9532], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-09-27\nx-release: v4\ntitle: Amazon Simple Email Service\ndescription: <fullname>Amazon SES API v2</fullname> <p>Welcome to the Amazon SES API v2 Reference. This guide provides information about the Amazon SES API v2, including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon SES</a> is an AWS service that you can use to send email messages to your customers.</p> <p>If you're new to Amazon SES API v2, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer Guide</a>. The <i>Amazon SES Developer Guide</i> provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p> <p>The Amazon SES API v2 is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#ses_region">AWS Service Endpoints</a> in the <i>Amazon Web Services General Reference</i>. To learn more about AWS Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html">Managing AWS Regions</a> in the <i>Amazon Web Services General Reference</i>.</p> <p>In each Region, AWS maintains multiple Availability Zones. These Availability Zones are physically isolated from each other, but are united by private, low-latency, high-throughput, and highly redundant network connections. These Availability Zones enable us to provide very high levels of availability and redundancy, while also minimizing latency. To learn more about the number of Availability Zones that are available in each Region, see <a href="http://aws.amazon.com/about-aws/global-infrastructure/">AWS Global Infrastructure</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sesv2\nx-aws-signingName: ses\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-09-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/email/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9534, 9535], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/email/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-09-27: DataRow\">2019-09-27</span>", children: [9508, 9533, 9536, 9537, 9538, 9539, 9540], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-09-27, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon SES API v2</fullname> <p>Welcome to the Amazon SES API v2 Reference. This guide provides information about the Amazon SES API v2, including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon SES</a> is an AWS service that you can use to send email messages to your customers.</p> <p>If you're new to Amazon SES API v2, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer Guide</a>. The <i>Amazon SES Developer Guide</i> provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p> <p>The Amazon SES API v2 is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#ses_region">AWS ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sesv2, x-aws-signingName:ses, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sesv2-2019-09-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9541], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-09-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-09-27, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon SES API v2</fullname> <p>Welcome to the Amazon SES API v2 Reference. This guide provides information about the Amazon SES API v2, including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon SES</a> is an AWS service that you can use to send email messages to your customers.</p> <p>If you're new to Amazon SES API v2, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer Guide</a>. The <i>Amazon SES Developer Guide</i> provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p> <p>The Amazon SES API v2 is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/email/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sesv2/2019-09-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-09-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sesv2: DataRow\">amazonaws.com:sesv2</span>", children: [9506, 9507, 9542], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-09-27\nversions: { 2019-09-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-09-27, x-release:v4, title:Amazon Simple Email Service, description:<fullname>Amazon SES API v2</fullname> <p>Welcome to the Amazon SES API v2 Reference. This guide provides information about the Amazon SES API v2, including supported operations, data types, parameters, and schemas.</p> <p> <a href="https://aws.amazon.com/pinpoint">Amazon SES</a> is an AWS service that you can use to send email messages to your customers.</p> <p>If you're new to Amazon SES API v2, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/">Amazon Simple Email Service Developer Guide</a>. The <i>Amazon SES Developer Guide</i> provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.</p> <p>The Amazon SES API v2 is available in several AWS Regions and it provides an endpoint for each of these Regions. For a list of all the Regions and endpoints wh... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-06-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-06-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Shield"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Shield Advanced</fullname> <p>This is the <i>Shield Advanced API Reference</i>. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed information about WAF and Shield Advanced features and an overview of how to use the WAF and Shield Advanced APIs, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">WAF and Shield Developer Guide</a>.</p>\"><fullname>Shield Advanced</fullname> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9551, 9552], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9555, 9556, 9557, 9558], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9560, 9561], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["shield"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410442, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9566], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9547, 9548, 9549, 9550, 9553, 9554, 9559, 9562, 9563, 9564, 9565, 9567, 9568, 9569], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-06-02\nx-release: v4\ntitle: AWS Shield\ndescription: <fullname>Shield Advanced</fullname> <p>This is the <i>Shield Advanced API Reference</i>. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed information about WAF and Shield Advanced features and an overview of how to use the WAF and Shield Advanced APIs, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">WAF and Shield Developer Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: shield\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-06-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/shield/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9571, 9572], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/shield/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-06-02: DataRow\">2016-06-02</span>", children: [9546, 9570, 9573, 9574, 9575, 9576, 9577], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-06-02, x-release:v4, title:AWS Shield, description:<fullname>Shield Advanced</fullname> <p>This is the <i>Shield Advanced API Reference</i>. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed information about WAF and Shield Advanced features and an overview of how to use the WAF and Shield Advanced APIs, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">WAF and Shield Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:shield, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/shield-2016-06-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/shield/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9578], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-06-02: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-02, x-release:v4, title:AWS Shield, description:<fullname>Shield Advanced</fullname> <p>This is the <i>Shield Advanced API Reference</i>. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed information about WAF and Shield Advanced features and an overview of how to use the WAF and Shield Advanced APIs, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">WAF and Shield Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:shield, x-origin:[1 x 4] { contentType:application/j..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/shield/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/shield/2016-06-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-06-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:shield: DataRow\">amazonaws.com:shield</span>", children: [9544, 9545, 9579], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-06-02\nversions: { 2016-06-02:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-02, x-release:v4, title:AWS Shield, description:<fullname>Shield Advanced</fullname> <p>This is the <i>Shield Advanced API Reference</i>. This guide is for developers who need detailed information about the Shield Advanced API actions, data types, and errors. For detailed information about WAF and Shield Advanced features and an overview of how to use the WAF and Shield Advanced APIs, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/">WAF and Shield Developer Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:shield, x-ori... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-08-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-08-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Signer"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code. </p> <p>AWS Signer supports the following applications:</p> <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3. </p> <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code signing certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p> <p>For more information about AWS Signer, see the <a href="http://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer Guide</a>.</p> <p/>\"><p>AWS Signer is a fully managed code<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9588, 9589], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9592, 9593, 9594, 9595], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9597, 9598], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["signer"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["signer"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410443, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9604], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9584, 9585, 9586, 9587, 9590, 9591, 9596, 9599, 9600, 9601, 9602, 9603, 9605, 9606, 9607], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-08-25\nx-release: v4\ntitle: AWS Signer\ndescription: <p>AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code. </p> <p>AWS Signer supports the following applications:</p> <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3. </p> <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code signing certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management. </p> <p>For more information about AWS Signer, see the <a href="http://docs.aws.amazon.com/signer/latest/developerguide/Welcome.html">AWS Signer Developer Guide</a>.</p> <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: signer\nx-aws-signingName: signer\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-08-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/signer/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9609, 9610], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/signer/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-08-25: DataRow\">2017-08-25</span>", children: [9583, 9608, 9611, 9612, 9613, 9614, 9615], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-08-25, x-release:v4, title:AWS Signer, description:<p>AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code. </p> <p>AWS Signer supports the following applications:</p> <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3. </p> <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-party code signing certificate using ACM, and use that to sign upda..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:signer, x-aws-signingName:signer, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/signer-2017-08-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/signer/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9616], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-08-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-25, x-release:v4, title:AWS Signer, description:<p>AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code. </p> <p>AWS Signer supports the following applications:</p> <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3. </p> <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In order to sign code, you import a third-p..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/signer/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/signer/2017-08-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-08-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:signer: DataRow\">amazonaws.com:signer</span>", children: [9581, 9582, 9617], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-08-25\nversions: { 2017-08-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-08-25, x-release:v4, title:AWS Signer, description:<p>AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code. </p> <p>AWS Signer supports the following applications:</p> <p>With <i>code signing for AWS Lambda</i>, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3. </p> <p>With <i>code signing for IoT</i>, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for <a href="http://docs.aws.amazon.com/freertos/latest/userguide/">Amazon FreeRTOS</a> and <a href="http://docs.aws.amazon.com/iot/latest/developerguide/">AWS IoT Device Management</a>, and is integrated with <a href="http://docs.aws.amazon.com/acm/latest/userguide/">AWS Certificate Manager (ACM)</a>. In o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-10-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-10-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Server Migration Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Server Migration Service</fullname> <p>AWS Server Migration Service (AWS SMS) makes it easier and faster for you to migrate your on-premises workloads to AWS. To learn more about AWS SMS, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/server-migration-service/">AWS Server Migration Service product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/server-migration-service/latest/userguide/">AWS Server Migration Service User Guide</a> </p> </li> </ul>\"><fullname>AWS Server Migration Servic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9626, 9627], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9630, 9631, 9632, 9633], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9635, 9636], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sms"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410444, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9641], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9622, 9623, 9624, 9625, 9628, 9629, 9634, 9637, 9638, 9639, 9640, 9642, 9643, 9644], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-10-24\nx-release: v4\ntitle: AWS Server Migration Service\ndescription: <fullname>AWS Server Migration Service</fullname> <p>AWS Server Migration Service (AWS SMS) makes it easier and faster for you to migrate your on-premises workloads to AWS. To learn more about AWS SMS, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/server-migration-service/">AWS Server Migration Service product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/server-migration-service/latest/userguide/">AWS Server Migration Service User Guide</a> </p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sms\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-10-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sms/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9646, 9647], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sms/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-10-24: DataRow\">2016-10-24</span>", children: [9621, 9645, 9648, 9649, 9650, 9651, 9652], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-10-24, x-release:v4, title:AWS Server Migration Service, description:<fullname>AWS Server Migration Service</fullname> <p>AWS Server Migration Service (AWS SMS) makes it easier and faster for you to migrate your on-premises workloads to AWS. To learn more about AWS SMS, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/server-migration-service/">AWS Server Migration Service product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/server-migration-service/latest/userguide/">AWS Server Migration Service User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sms, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sms-2016-10-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sms/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9653], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-10-24: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-24, x-release:v4, title:AWS Server Migration Service, description:<fullname>AWS Server Migration Service</fullname> <p>AWS Server Migration Service (AWS SMS) makes it easier and faster for you to migrate your on-premises workloads to AWS. To learn more about AWS SMS, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/server-migration-service/">AWS Server Migration Service product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/server-migration-service/latest/userguide/">AWS Server Migration Service User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:a..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sms/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sms/2016-10-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-10-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sms: DataRow\">amazonaws.com:sms</span>", children: [9619, 9620, 9654], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-10-24\nversions: { 2016-10-24:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-10-24, x-release:v4, title:AWS Server Migration Service, description:<fullname>AWS Server Migration Service</fullname> <p>AWS Server Migration Service (AWS SMS) makes it easier and faster for you to migrate your on-premises workloads to AWS. To learn more about AWS SMS, see the following resources:</p> <ul> <li> <p> <a href="http://aws.amazon.com/server-migration-service/">AWS Server Migration Service product page</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/server-migration-service/latest/userguide/">AWS Server Migration Service User Guide</a> </p> </li> </ul>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Pinpoint SMS and Voice Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Pinpoint SMS and Voice Messaging public facing APIs\">Pinpoint SMS and Voice Messaging publ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9663, 9664], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9667, 9668, 9669, 9670], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9672, 9673], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sms-voice"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sms-voice"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410445, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9679], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9659, 9660, 9661, 9662, 9665, 9666, 9671, 9674, 9675, 9676, 9677, 9678, 9680, 9681, 9682], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-05\nx-release: v4\ntitle: Amazon Pinpoint SMS and Voice Service\ndescription: Pinpoint SMS and Voice Messaging public facing APIs\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sms-voice\nx-aws-signingName: sms-voice\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/pinpoint/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9684, 9685], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/pinpoint/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-05: DataRow\">2018-09-05</span>", children: [9658, 9683, 9686, 9687, 9688, 9689, 9690], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-05, x-release:v4, title:Amazon Pinpoint SMS and Voice Service, description:Pinpoint SMS and Voice Messaging public facing APIs, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sms-voice, x-aws-signingName:sms-voice, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sms-voice-2018-09-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pinpoint/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9691], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-05: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-05, x-release:v4, title:Amazon Pinpoint SMS and Voice Service, description:Pinpoint SMS and Voice Messaging public facing APIs, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sms-voice, x-aws-signingName:sms-voice, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sms-voice-2018-09-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/pinpoint/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sms-voice/2018-09-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sms-voice: DataRow\">amazonaws.com:sms-voice</span>", children: [9656, 9657, 9692], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-05\nversions: { 2018-09-05:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-05, x-release:v4, title:Amazon Pinpoint SMS and Voice Service, description:Pinpoint SMS and Voice Messaging public facing APIs, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sms-voice, x-aws-signingName:sms-voice, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sms-voice-2018-09-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-06-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-06-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Import/Export Snowball"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS Snow Family is a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple Storage Service (Amazon S3). The Snow commands described here provide access to the same functionality that is available in the AWS Snow Family Management Console, which enables you to create and manage jobs for a Snow device. To transfer data locally with a Snow device, you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or AWS OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>.\">AWS Snow Family is a petabyte-scale d<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9701, 9702], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9705, 9706, 9707, 9708], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9710, 9711], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["snowball"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410446, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9716], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9697, 9698, 9699, 9700, 9703, 9704, 9709, 9712, 9713, 9714, 9715, 9717, 9718, 9719], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-06-30\nx-release: v4\ntitle: Amazon Import/Export Snowball\ndescription: AWS Snow Family is a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple Storage Service (Amazon S3). The Snow commands described here provide access to the same functionality that is available in the AWS Snow Family Management Console, which enables you to create and manage jobs for a Snow device. To transfer data locally with a Snow device, you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or AWS OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: snowball\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-06-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/snowball/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9721, 9722], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/snowball/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-16T18:45:33.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-06-30: DataRow\">2016-06-30</span>", children: [9696, 9720, 9723, 9724, 9725, 9726, 9727], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-06-30, x-release:v4, title:Amazon Import/Export Snowball, description:AWS Snow Family is a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple Storage Service (Amazon S3). The Snow commands described here provide access to the same functionality that is available in the AWS Snow Family Management Console, which enables you to create and manage jobs for a Snow device. To transfer data locally with a Snow device, you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or AWS OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:snowball, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/snowball-2016-06-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/snowball/ }\nupdated: 2020-04-16T18:45:33.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9728], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-06-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-30, x-release:v4, title:Amazon Import/Export Snowball, description:AWS Snow Family is a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple Storage Service (Amazon S3). The Snow commands described here provide access to the same functionality that is available in the AWS Snow Family Management Console, which enables you to create and manage jobs for a Snow device. To transfer data locally with a Snow device, you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or AWS OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/snowball/ }, updated:2020-04-16T18:45:33.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/snowball/2016-06-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-06-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:snowball: DataRow\">amazonaws.com:snowball</span>", children: [9694, 9695, 9729], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-06-30\nversions: { 2016-06-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-06-30, x-release:v4, title:Amazon Import/Export Snowball, description:AWS Snow Family is a petabyte-scale data transport solution that uses secure devices to transfer large amounts of data between your on-premises data centers and Amazon Simple Storage Service (Amazon S3). The Snow commands described here provide access to the same functionality that is available in the AWS Snow Family Management Console, which enables you to create and manage jobs for a Snow device. To transfer data locally with a Snow device, you'll need to use the Snowball Edge client or the Amazon S3 API Interface for Snowball or AWS OpsHub for Snow Family. For more information, see the <a href="https://docs.aws.amazon.com/AWSImportExport/latest/ug/api-reference.html">User Guide</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, c... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2010-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2010-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Notification Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the <a href="http://aws.amazon.com/sns/">Amazon SNS product page</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/">Amazon SNS Developer Guide</a>. </p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-authentication-and-access-control.html">Identity and access management in Amazon SNS</a> in the <i>Amazon SNS Developer Guide.</i> </p> <p>We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. </p>\"><fullname>Amazon Simple Notification <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9738, 9739], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9742, 9743, 9744, 9745], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9747, 9748], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sns"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410447, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9753], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9734, 9735, 9736, 9737, 9740, 9741, 9746, 9749, 9750, 9751, 9752, 9754, 9755, 9756], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2010-03-31\nx-release: v4\ntitle: Amazon Simple Notification Service\ndescription: <fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the <a href="http://aws.amazon.com/sns/">Amazon SNS product page</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/">Amazon SNS Developer Guide</a>. </p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-authentication-and-access-control.html">Identity and access management in Amazon SNS</a> in the <i>Amazon SNS Developer Guide.</i> </p> <p>We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sns\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2010-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sns/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9758, 9759], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sns/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2010-03-31: DataRow\">2010-03-31</span>", children: [9733, 9757, 9760, 9761, 9762, 9763, 9764], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2010-03-31, x-release:v4, title:Amazon Simple Notification Service, description:<fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the <a href="http://aws.amazon.com/sns/">Amazon SNS product page</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/">Amazon SNS Developer Guide</a>. </p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-authentication-and-access-control.html">Identity and access management in Amazon SNS</a> in the <i>Amazon SNS Developer Guide.</i> </p> <p>We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs cont..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sns, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sns-2010-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sns/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9765], rightAlign: false, values: ["<span class=\"formatted\" title=\"2010-03-31: { added:2020-02-28T16:47:57.000Z, info:{ version:2010-03-31, x-release:v4, title:Amazon Simple Notification Service, description:<fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the <a href="http://aws.amazon.com/sns/">Amazon SNS product page</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/">Amazon SNS Developer Guide</a>. </p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-authentication-and-access-control.html">Identity and access management in Amazon SNS</a> in the <i>Amazon SNS Developer Guide.</i> </p> <p>We also provide SDKs th..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sns/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sns/2010-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2010-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sns: DataRow\">amazonaws.com:sns</span>", children: [9731, 9732, 9766], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2010-03-31\nversions: { 2010-03-31:{ added:2020-02-28T16:47:57.000Z, info:{ version:2010-03-31, x-release:v4, title:Amazon Simple Notification Service, description:<fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see the <a href="http://aws.amazon.com/sns/">Amazon SNS product page</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href="https://docs.aws.amazon.com/sns/latest/dg/">Amazon SNS Developer Guide</a>. </p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/sns/latest/dg/sns-authentication-and-access-control.html">Identity and access management in Amazon SNS</a> in the <i>Amazon SNS Developer Gui... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-11-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-11-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Queue Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Welcome to the <i>Amazon SQS API Reference</i>.</p> <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer Guide.</i> </p> <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p> <ul> <li> <p>Cryptographically sign your service requests</p> </li> <li> <p>Retry requests</p> </li> <li> <p>Handle error responses</p> </li> </ul> <p> <b>Additional information</b> </p> <ul> <li> <p> <a href="http://aws.amazon.com/sqs/">Amazon SQS Product Page</a> </p> </li> <li> <p> <i>Amazon SQS Developer Guide</i> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-making-api-requests.html">Making API Requests</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes">Amazon SQS Message Attributes</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Amazon SQS Dead-Letter Queues</a> </p> </li> </ul> </li> <li> <p> <a href="http://docs.aws.amazon.com/cli/latest/reference/sqs/index.html">Amazon SQS in the <i>Command Line Interface</i> </a> </p> </li> <li> <p> <i>Amazon Web Services General Reference</i> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#sqs_region">Regions and Endpoints</a> </p> </li> </ul> </li> </ul>\"><p>Welcome to the <i>Amazon SQS API R<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9775, 9776], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9779, 9780, 9781, 9782], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9784, 9785], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sqs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410448, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9790], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9771, 9772, 9773, 9774, 9777, 9778, 9783, 9786, 9787, 9788, 9789, 9791, 9792, 9793], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-11-05\nx-release: v4\ntitle: Amazon Simple Queue Service\ndescription: <p>Welcome to the <i>Amazon SQS API Reference</i>.</p> <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer Guide.</i> </p> <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p> <ul> <li> <p>Cryptographically sign your service requests</p> </li> <li> <p>Retry requests</p> </li> <li> <p>Handle error responses</p> </li> </ul> <p> <b>Additional information</b> </p> <ul> <li> <p> <a href="http://aws.amazon.com/sqs/">Amazon SQS Product Page</a> </p> </li> <li> <p> <i>Amazon SQS Developer Guide</i> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-making-api-requests.html">Making API Requests</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-metadata.html#sqs-message-attributes">Amazon SQS Message Attributes</a> </p> </li> <li> <p> <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html">Amazon SQS Dead-Letter Queues</a> </p> </li> </ul> </li> <li> <p> <a href="http://docs.aws.amazon.com/cli/latest/reference/sqs/index.html">Amazon SQS in the <i>Command Line Interface</i> </a> </p> </li> <li> <p> <i>Amazon Web Services General Reference</i> </p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#sqs_region">Regions and Endpoints</a> </p> </li> </ul> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sqs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-11-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sqs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9795, 9796], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sqs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-11-05: DataRow\">2012-11-05</span>", children: [9770, 9794, 9797, 9798, 9799, 9800, 9801], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2012-11-05, x-release:v4, title:Amazon Simple Queue Service, description:<p>Welcome to the <i>Amazon SQS API Reference</i>.</p> <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer Guide.</i> </p> <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p> <ul> <li> <p>Cryptographically sign your service requests</p> </li> <li> <p>Retry requests</p> </li> <li> <p>Handle error responses</p> </li> </ul> <p> <b>Additional information</b> </p> <ul> <li> <p> <a hre..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sqs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sqs-2012-11-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sqs/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9802], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-11-05: { added:2017-05-02T07:59:53.000Z, info:{ version:2012-11-05, x-release:v4, title:Amazon Simple Queue Service, description:<p>Welcome to the <i>Amazon SQS API Reference</i>.</p> <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer Guide.</i> </p> <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p> <ul> <li> <p>Cryptographically sign your service requests</p> </li> <li> <p>Retry requests</p> </li> <li> <p>Handle error re..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sqs/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sqs/2012-11-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-11-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sqs: DataRow\">amazonaws.com:sqs</span>", children: [9768, 9769, 9803], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2012-11-05\nversions: { 2012-11-05:{ added:2017-05-02T07:59:53.000Z, info:{ version:2012-11-05, x-release:v4, title:Amazon Simple Queue Service, description:<p>Welcome to the <i>Amazon SQS API Reference</i>.</p> <p>Amazon SQS is a reliable, highly-scalable hosted queue for storing messages as they travel between applications or microservices. Amazon SQS moves data between distributed application components and helps you decouple these components.</p> <p>For information on the permissions you need to use this API, see <a href="https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-authentication-and-access-control.html">Identity and access management</a> in the <i>Amazon SQS Developer Guide.</i> </p> <p>You can use <a href="http://aws.amazon.com/tools/#sdk">Amazon Web Services SDKs</a> to access Amazon SQS using your favorite programming language. The SDKs perform tasks such as the following automatically:</p> <ul> <li> <p>Cryptographically sign your service requests</p> </li> <li> <p>Retry req... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-11-06"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-11-06"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Systems Manager (SSM)"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any on-premises server or virtual machine (VM) in your hybrid environment that has been configured for Systems Manager.</p> <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>.</p> <p>To get started, verify prerequisites and configure managed instances. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html">Setting up Amazon Web Services Systems Manager</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p> <p class="title"> <b>Related resources</b> </p> <ul> <li> <p>For information about how to use a Query API, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/making-api-requests.html">Making API requests</a>. </p> </li> <li> <p>For information about other API operations you can perform on EC2 instances, see the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/">Amazon EC2 API Reference</a>.</p> </li> <li> <p>For information about AppConfig, a capability of Systems Manager, see the <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/">AppConfig User Guide</a> and the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/">AppConfig API Reference</a>.</p> </li> <li> <p>For information about Incident Manager, a capability of Systems Manager, see the <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/">Incident Manager User Guide</a> and the <a href="https://docs.aws.amazon.com/incident-manager/latest/APIReference/">Incident Manager API Reference</a>.</p> </li> </ul>\"><p>Amazon Web Services Systems Manage<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9812, 9813], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9816, 9817, 9818, 9819], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9821, 9822], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ssm"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410449, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9827], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9808, 9809, 9810, 9811, 9814, 9815, 9820, 9823, 9824, 9825, 9826, 9828, 9829, 9830], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2014-11-06\nx-release: v4\ntitle: Amazon Simple Systems Manager (SSM)\ndescription: <p>Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any on-premises server or virtual machine (VM) in your hybrid environment that has been configured for Systems Manager.</p> <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>.</p> <p>To get started, verify prerequisites and configure managed instances. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html">Setting up Amazon Web Services Systems Manager</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p> <p class="title"> <b>Related resources</b> </p> <ul> <li> <p>For information about how to use a Query API, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/making-api-requests.html">Making API requests</a>. </p> </li> <li> <p>For information about other API operations you can perform on EC2 instances, see the <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/">Amazon EC2 API Reference</a>.</p> </li> <li> <p>For information about AppConfig, a capability of Systems Manager, see the <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/">AppConfig User Guide</a> and the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/">AppConfig API Reference</a>.</p> </li> <li> <p>For information about Incident Manager, a capability of Systems Manager, see the <a href="https://docs.aws.amazon.com/incident-manager/latest/userguide/">Incident Manager User Guide</a> and the <a href="https://docs.aws.amazon.com/incident-manager/latest/APIReference/">Incident Manager API Reference</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ssm\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2014-11-06<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/ssm/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9832, 9833], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ssm/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-07T20:22:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2014-11-06: DataRow\">2014-11-06</span>", children: [9807, 9831, 9834, 9835, 9836, 9837, 9838], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2014-11-06, x-release:v4, title:Amazon Simple Systems Manager (SSM), description:<p>Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any on-premises server or virtual machine (VM) in your hybrid environment that has been configured for Systems Manager.</p> <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>.</p> <p>To get started, verify prerequisites and configure managed instances. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ssm, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ssm-2014-11-06.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm/ }\nupdated: 2020-05-07T20:22:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9839], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-11-06: { added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-06, x-release:v4, title:Amazon Simple Systems Manager (SSM), description:<p>Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any on-premises server or virtual machine (VM) in your hybrid environment that has been configured for Systems Manager.</p> <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>.</p> <p>To get started, verify prerequisites and configure managed instances. For more information, see <a ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm/ }, updated:2020-05-07T20:22:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm/2014-11-06/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-11-06: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ssm: DataRow\">amazonaws.com:ssm</span>", children: [9805, 9806, 9840], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2014-11-06\nversions: { 2014-11-06:{ added:2020-02-28T16:47:57.000Z, info:{ version:2014-11-06, x-release:v4, title:Amazon Simple Systems Manager (SSM), description:<p>Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed instances. A <i>managed instance</i> is any Amazon Elastic Compute Cloud instance (EC2 instance), or any on-premises server or virtual machine (VM) in your hybrid environment that has been configured for Systems Manager.</p> <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">Amazon Web Services Systems Manager User Guide</a>.</p> <p>To get started, verify prerequisites and configure managed i... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-05-03"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-05-03"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AWS Systems Manager Incident Manager Contacts\">AWS Systems Manager Incident Manager <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>\"><p>Systems Manager Incident Manager i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9849, 9850], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9853, 9854, 9855, 9856], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9858, 9859], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ssm-contacts"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ssm-contacts"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410450, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9865], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9845, 9846, 9847, 9848, 9851, 9852, 9857, 9860, 9861, 9862, 9863, 9864, 9866, 9867, 9868], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-05-03\nx-release: v4\ntitle: AWS Systems Manager Incident Manager Contacts\ndescription: <p>Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ssm-contacts\nx-aws-signingName: ssm-contacts\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-05-03<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/ssm-contacts/\">https://docs.aws.amazon.com/ssm-conta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9870, 9871], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ssm-contacts/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-05-03: DataRow\">2021-05-03</span>", children: [9844, 9869, 9872, 9873, 9874, 9875], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2021-05-03, x-release:v4, title:AWS Systems Manager Incident Manager Contacts, description:<p>Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ssm-contacts, x-aws-signingName:ssm-contacts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ssm-contacts-2021-05-03.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm-contacts/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9876], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-05-03: { added:2021-06-18T13:57:32.889Z, info:{ version:2021-05-03, x-release:v4, title:AWS Systems Manager Incident Manager Contacts, description:<p>Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://gith..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm-contacts/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm-contacts/2021-05-03/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-05-03: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ssm-contacts: DataRow\">amazonaws.com:ssm-contacts</span>", children: [9842, 9843, 9877], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2021-05-03\nversions: { 2021-05-03:{ added:2021-06-18T13:57:32.889Z, info:{ version:2021-05-03, x-release:v4, title:AWS Systems Manager Incident Manager Contacts, description:<p>Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-18T13:57:32.889Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Systems Manager Incident Manager"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>\"><p>AWS Systems Manager Incident Manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9886, 9887], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9890, 9891, 9892, 9893], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9895, 9896], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ssm-incidents"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["ssm-incidents"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410451, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9902], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9882, 9883, 9884, 9885, 9888, 9889, 9894, 9897, 9898, 9899, 9900, 9901, 9903, 9904, 9905], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-05-10\nx-release: v4\ntitle: AWS Systems Manager Incident Manager\ndescription: <p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: ssm-incidents\nx-aws-signingName: ssm-incidents\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-05-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/ssm-incidents/\">https://docs.aws.amazon.com/ssm-incid<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9907, 9908], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/ssm-incidents/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-05-10: DataRow\">2018-05-10</span>", children: [9881, 9906, 9909, 9910, 9911, 9912], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\ninfo: { version:2018-05-10, x-release:v4, title:AWS Systems Manager Incident Manager, description:<p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:ssm-incidents, x-aws-signingName:ssm-incidents, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/ssm-incidents-2018-05-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm-incidents/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9913], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-10: { added:2021-06-18T13:57:32.889Z, info:{ version:2018-05-10, x-release:v4, title:AWS Systems Manager Incident Manager, description:<p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2op..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/ssm-incidents/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:ssm-incidents: DataRow\">amazonaws.com:ssm-incidents</span>", children: [9879, 9880, 9914], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-18T13:57:32.889Z\npreferred: 2018-05-10\nversions: { 2018-05-10:{ added:2021-06-18T13:57:32.889Z, info:{ version:2018-05-10, x-release:v4, title:AWS Systems Manager Incident Manager, description:<p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-18T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Single Sign-On"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Single Sign-On Portal is a web service that makes it easy for you to assign user access to AWS SSO resources such as the user portal. Users can get AWS account applications and roles assigned to them and get federated into the application.</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO Portal operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\"><p>AWS Single Sign-On Portal is a web<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9923, 9924], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9927, 9928, 9929, 9930], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9932, 9933], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sso"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["awsssoportal"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410452, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9939], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9919, 9920, 9921, 9922, 9925, 9926, 9931, 9934, 9935, 9936, 9937, 9938, 9940, 9941, 9942], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-06-10\nx-release: v4\ntitle: AWS Single Sign-On\ndescription: <p>AWS Single Sign-On Portal is a web service that makes it easy for you to assign user access to AWS SSO resources such as the user portal. Users can get AWS account applications and roles assigned to them and get federated into the application.</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO Portal operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sso\nx-aws-signingName: awsssoportal\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-06-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sso/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9944, 9945], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sso/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-06-10: DataRow\">2019-06-10</span>", children: [9918, 9943, 9946, 9947, 9948, 9949, 9950], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-06-10, x-release:v4, title:AWS Single Sign-On, description:<p>AWS Single Sign-On Portal is a web service that makes it easy for you to assign user access to AWS SSO resources such as the user portal. Users can get AWS account applications and roles assigned to them and get federated into the application.</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO Portal operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, including how to download and install them, see <a href="http://aws.amazon.com/to..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sso, x-aws-signingName:awsssoportal, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sso-2019-06-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sso/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9951], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-10, x-release:v4, title:AWS Single Sign-On, description:<p>AWS Single Sign-On Portal is a web service that makes it easy for you to assign user access to AWS SSO resources such as the user portal. Users can get AWS account applications and roles assigned to them and get federated into the application.</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO Portal operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, includi..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sso/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso/2019-06-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sso: DataRow\">amazonaws.com:sso</span>", children: [9916, 9917, 9952], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-06-10\nversions: { 2019-06-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-10, x-release:v4, title:AWS Single Sign-On, description:<p>AWS Single Sign-On Portal is a web service that makes it easy for you to assign user access to AWS SSO resources such as the user portal. Users can get AWS account applications and roles assigned to them and get federated into the application.</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO Portal operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms, such as Java, Ruby, .Net, iOS, or Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-07-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-07-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Single Sign-On Admin"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon Web Services Single Sign On (SSO) is a cloud SSO service that makes it easy to centrally manage SSO access to multiple Amazon Web Services accounts and business applications. This guide provides information on SSO operations which could be used for access management of Amazon Web Services accounts. For information about Amazon Web Services SSO features, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services Single Sign-On User Guide</a>.</p> <p>Many operations in the SSO APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in Amazon Web Services SSO, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/welcome.html">Amazon Web Services SSO Identity Store API Reference</a>.</p>\"><p>Amazon Web Services Single Sign On<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9961, 9962], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [9965, 9966, 9967, 9968], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [9970, 9971], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sso-admin"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["sso"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410453, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [9977], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9957, 9958, 9959, 9960, 9963, 9964, 9969, 9972, 9973, 9974, 9975, 9976, 9978, 9979, 9980], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-07-20\nx-release: v4\ntitle: AWS Single Sign-On Admin\ndescription: <p>Amazon Web Services Single Sign On (SSO) is a cloud SSO service that makes it easy to centrally manage SSO access to multiple Amazon Web Services accounts and business applications. This guide provides information on SSO operations which could be used for access management of Amazon Web Services accounts. For information about Amazon Web Services SSO features, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services Single Sign-On User Guide</a>.</p> <p>Many operations in the SSO APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in Amazon Web Services SSO, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/welcome.html">Amazon Web Services SSO Identity Store API Reference</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sso-admin\nx-aws-signingName: sso\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-07-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sso/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [9982, 9983], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sso/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-07-20: DataRow\">2020-07-20</span>", children: [9956, 9981, 9984, 9985, 9986, 9987], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-07-20, x-release:v4, title:AWS Single Sign-On Admin, description:<p>Amazon Web Services Single Sign On (SSO) is a cloud SSO service that makes it easy to centrally manage SSO access to multiple Amazon Web Services accounts and business applications. This guide provides information on SSO operations which could be used for access management of Amazon Web Services accounts. For information about Amazon Web Services SSO features, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services Single Sign-On User Guide</a>.</p> <p>Many operations in the SSO APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in Amazon Web Services SSO, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/welcome.html">Amazon Web Services SSO Identity Store API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sso-admin, x-aws-signingName:sso, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sso-admin-2020-07-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sso/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [9988], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-07-20: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-20, x-release:v4, title:AWS Single Sign-On Admin, description:<p>Amazon Web Services Single Sign On (SSO) is a cloud SSO service that makes it easy to centrally manage SSO access to multiple Amazon Web Services accounts and business applications. This guide provides information on SSO operations which could be used for access management of Amazon Web Services accounts. For information about Amazon Web Services SSO features, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services Single Sign-On User Guide</a>.</p> <p>Many operations in the SSO APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in Amazon Web Services SSO, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/welcome.html">Amazon Web Services SSO Identity Store API Reference</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/ca..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sso/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso-admin/2020-07-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-07-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sso-admin: DataRow\">amazonaws.com:sso-admin</span>", children: [9954, 9955, 9989], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-07-20\nversions: { 2020-07-20:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-07-20, x-release:v4, title:AWS Single Sign-On Admin, description:<p>Amazon Web Services Single Sign On (SSO) is a cloud SSO service that makes it easy to centrally manage SSO access to multiple Amazon Web Services accounts and business applications. This guide provides information on SSO operations which could be used for access management of Amazon Web Services accounts. For information about Amazon Web Services SSO features, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">Amazon Web Services Single Sign-On User Guide</a>.</p> <p>Many operations in the SSO APIs rely on identifiers for users and groups, known as principals. For more information about how to work with principals and principal IDs in Amazon Web Services SSO, see the <a href="https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/welcome.html">Amazon Web Services SSO Identity Store API Reference</a>.</p>, x... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS SSO OIDC"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>AWS Single Sign-On (SSO) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI or a native application) to register with AWS SSO. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with AWS SSO. This service conforms with the OAuth 2.0 based implementation of the device authorization grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>).</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO OIDC operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .Net, iOS, and Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\"><p>AWS Single Sign-On (SSO) OpenID Co<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [9998, 9999], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10002, 10003, 10004, 10005], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10007, 10008], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sso-oidc"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["awsssooidc"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410454, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10014], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [9994, 9995, 9996, 9997, 10000, 10001, 10006, 10009, 10010, 10011, 10012, 10013, 10015, 10016, 10017], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-06-10\nx-release: v4\ntitle: AWS SSO OIDC\ndescription: <p>AWS Single Sign-On (SSO) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI or a native application) to register with AWS SSO. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with AWS SSO. This service conforms with the OAuth 2.0 based implementation of the device authorization grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>).</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO OIDC operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .Net, iOS, and Android. The SDKs provide a convenient way to create programmatic access to AWS SSO and other AWS services. For more information about the AWS SDKs, including how to download and install them, see <a href="http://aws.amazon.com/tools/">Tools for Amazon Web Services</a>.</p> </note>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sso-oidc\nx-aws-signingName: awsssooidc\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-06-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/oidc/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10019, 10020], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/oidc/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-06-10: DataRow\">2019-06-10</span>", children: [9993, 10018, 10021, 10022, 10023, 10024, 10025], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-06-10, x-release:v4, title:AWS SSO OIDC, description:<p>AWS Single Sign-On (SSO) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI or a native application) to register with AWS SSO. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with AWS SSO. This service conforms with the OAuth 2.0 based implementation of the device authorization grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>).</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO OIDC operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms such as Java, Ruby, .Net, iOS, ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sso-oidc, x-aws-signingName:awsssooidc, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sso-oidc-2019-06-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/oidc/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10026], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-10, x-release:v4, title:AWS SSO OIDC, description:<p>AWS Single Sign-On (SSO) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI or a native application) to register with AWS SSO. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with AWS SSO. This service conforms with the OAuth 2.0 based implementation of the device authorization grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>).</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO OIDC operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist of libraries and sample code for various..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/oidc/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sso-oidc/2019-06-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sso-oidc: DataRow\">amazonaws.com:sso-oidc</span>", children: [9991, 9992, 10027], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-06-10\nversions: { 2019-06-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-06-10, x-release:v4, title:AWS SSO OIDC, description:<p>AWS Single Sign-On (SSO) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI or a native application) to register with AWS SSO. The service also enables the client to fetch the user’s access token upon successful authentication and authorization with AWS SSO. This service conforms with the OAuth 2.0 based implementation of the device authorization grant standard (<a href="https://tools.ietf.org/html/rfc8628">https://tools.ietf.org/html/rfc8628</a>).</p> <p>For general information about AWS SSO, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/what-is.html">What is AWS Single Sign-On?</a> in the <i>AWS SSO User Guide</i>.</p> <p>This API reference guide describes the AWS SSO OIDC operations that you can call programatically and includes detailed information on data types and errors.</p> <note> <p>AWS provides SDKs that consist o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-23"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-23"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Step Functions"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Step Functions</fullname> <p>AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.</p> <p>You can use Step Functions to build applications from individual components, each of which performs a discrete function, or <i>task</i>, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.</p> <p>Step Functions manages operations and underlying infrastructure to ensure your application is available at any scale. You can run tasks on AWS, your own servers, or any system that has access to AWS. You can access and use Step Functions using the console, the AWS SDKs, or an HTTP API. For more information about Step Functions, see the <i> <a href="https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html">AWS Step Functions Developer Guide</a> </i>.</p>\"><fullname>AWS Step Functions</fullnam<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10036, 10037], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10040, 10041, 10042, 10043], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10045, 10046], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["states"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410455, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10051], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10032, 10033, 10034, 10035, 10038, 10039, 10044, 10047, 10048, 10049, 10050, 10052, 10053, 10054], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-23\nx-release: v4\ntitle: AWS Step Functions\ndescription: <fullname>AWS Step Functions</fullname> <p>AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.</p> <p>You can use Step Functions to build applications from individual components, each of which performs a discrete function, or <i>task</i>, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.</p> <p>Step Functions manages operations and underlying infrastructure to ensure your application is available at any scale. You can run tasks on AWS, your own servers, or any system that has access to AWS. You can access and use Step Functions using the console, the AWS SDKs, or an HTTP API. For more information about Step Functions, see the <i> <a href="https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html">AWS Step Functions Developer Guide</a> </i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: states\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-23<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/states/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10056, 10057], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/states/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-23: DataRow\">2016-11-23</span>", children: [10031, 10055, 10058, 10059, 10060, 10061, 10062], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-23, x-release:v4, title:AWS Step Functions, description:<fullname>AWS Step Functions</fullname> <p>AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.</p> <p>You can use Step Functions to build applications from individual components, each of which performs a discrete function, or <i>task</i>, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.</p> <p>Step Functions manages operations and underlying infrastructure to ensure your application is available at any scale. You can run tasks on AWS, your own servers, or any system that has access to AWS. You can access and use ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:states, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/states-2016-11-23.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/states/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10063], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-23: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-23, x-release:v4, title:AWS Step Functions, description:<fullname>AWS Step Functions</fullname> <p>AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.</p> <p>You can use Step Functions to build applications from individual components, each of which performs a discrete function, or <i>task</i>, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.</p> <p>Step Functions manages operations and underlying infrastructure to ensure your application is available at any scale. You can run tasks on AWS, your ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/states/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/states/2016-11-23/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-23: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:states: DataRow\">amazonaws.com:states</span>", children: [10029, 10030, 10064], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-23\nversions: { 2016-11-23:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-23, x-release:v4, title:AWS Step Functions, description:<fullname>AWS Step Functions</fullname> <p>AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.</p> <p>You can use Step Functions to build applications from individual components, each of which performs a discrete function, or <i>task</i>, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.</p> <p>Step Functions manages operations and underlying infrastructure to ensure your application is available at any... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-06-30"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-06-30"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Storage Gateway"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Storage Gateway Service</fullname> <p>Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>Storage Gateway Service API Reference</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders">Storage Gateway required request headers</a>: Describes the required headers that you must send with every POST request to Storage Gateway.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewaySigningRequests">Signing requests</a>: Storage Gateway requires that you authenticate every request you send; this topic describes how sign such a request.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#APIErrorResponses">Error responses</a>: Provides reference information about Storage Gateway errors.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/APIReference/API_Operations.html">Operations in Storage Gateway</a>: Contains detailed descriptions of all Storage Gateway operations, their request parameters, response elements, possible errors, and examples of requests and responses.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/sg.html">Storage Gateway endpoints and quotas</a>: Provides a list of each Region and the endpoints available for use with Storage Gateway.</p> </li> </ul> <note> <p>Storage Gateway resource IDs are in uppercase. When you use these resource IDs with the Amazon EC2 API, EC2 expects resource IDs in lowercase. You must change your resource ID to lowercase to use it with the EC2 API. For example, in Storage Gateway the ID for a volume might be <code>vol-AA22BB012345DAF670</code>. When you use this ID with the EC2 API, you must change it to <code>vol-aa22bb012345daf670</code>. Otherwise, the EC2 API might not behave as expected.</p> </note> <important> <p>IDs for Storage Gateway volumes and Amazon EBS snapshots created from gateway volumes are changing to a longer format. Starting in December 2016, all new volumes and snapshots will be created with a 17-character string. Starting in April 2016, you will be able to use these longer IDs so you can test your systems with the new format. For more information, see <a href="http://aws.amazon.com/ec2/faqs/#longer-ids">Longer EC2 and EBS resource IDs</a>.</p> <p>For example, a volume Amazon Resource Name (ARN) with the longer volume ID format looks like the following:</p> <p> <code>arn:aws:storagegateway:us-west-2:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABBCCDDEEFFG</code>.</p> <p>A snapshot ID with the longer ID format looks like the following: <code>snap-78e226633445566ee</code>.</p> <p>For more information, see <a href="http://forums.aws.amazon.com/ann.jspa?annID=3557">Announcement: Heads-up – Longer Storage Gateway volume and snapshot IDs coming in 2016</a>.</p> </important>\"><fullname>Storage Gateway Service</fu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10073, 10074], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10077, 10078, 10079, 10080], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10082, 10083], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["storagegateway"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410456, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10088], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10069, 10070, 10071, 10072, 10075, 10076, 10081, 10084, 10085, 10086, 10087, 10089, 10090, 10091], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-06-30\nx-release: v4\ntitle: AWS Storage Gateway\ndescription: <fullname>Storage Gateway Service</fullname> <p>Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>Storage Gateway Service API Reference</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders">Storage Gateway required request headers</a>: Describes the required headers that you must send with every POST request to Storage Gateway.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewaySigningRequests">Signing requests</a>: Storage Gateway requires that you authenticate every request you send; this topic describes how sign such a request.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#APIErrorResponses">Error responses</a>: Provides reference information about Storage Gateway errors.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/APIReference/API_Operations.html">Operations in Storage Gateway</a>: Contains detailed descriptions of all Storage Gateway operations, their request parameters, response elements, possible errors, and examples of requests and responses.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/general/latest/gr/sg.html">Storage Gateway endpoints and quotas</a>: Provides a list of each Region and the endpoints available for use with Storage Gateway.</p> </li> </ul> <note> <p>Storage Gateway resource IDs are in uppercase. When you use these resource IDs with the Amazon EC2 API, EC2 expects resource IDs in lowercase. You must change your resource ID to lowercase to use it with the EC2 API. For example, in Storage Gateway the ID for a volume might be <code>vol-AA22BB012345DAF670</code>. When you use this ID with the EC2 API, you must change it to <code>vol-aa22bb012345daf670</code>. Otherwise, the EC2 API might not behave as expected.</p> </note> <important> <p>IDs for Storage Gateway volumes and Amazon EBS snapshots created from gateway volumes are changing to a longer format. Starting in December 2016, all new volumes and snapshots will be created with a 17-character string. Starting in April 2016, you will be able to use these longer IDs so you can test your systems with the new format. For more information, see <a href="http://aws.amazon.com/ec2/faqs/#longer-ids">Longer EC2 and EBS resource IDs</a>.</p> <p>For example, a volume Amazon Resource Name (ARN) with the longer volume ID format looks like the following:</p> <p> <code>arn:aws:storagegateway:us-west-2:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABBCCDDEEFFG</code>.</p> <p>A snapshot ID with the longer ID format looks like the following: <code>snap-78e226633445566ee</code>.</p> <p>For more information, see <a href="http://forums.aws.amazon.com/ann.jspa?annID=3557">Announcement: Heads-up – Longer Storage Gateway volume and snapshot IDs coming in 2016</a>.</p> </important>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: storagegateway\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-06-30<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/storagegateway/\">https://docs.aws.amazon.com/storagega<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10093, 10094], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/storagegateway/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-30T20:18:10.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-06-30: DataRow\">2013-06-30</span>", children: [10068, 10092, 10095, 10096, 10097, 10098, 10099], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-06-30, x-release:v4, title:AWS Storage Gateway, description:<fullname>Storage Gateway Service</fullname> <p>Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>Storage Gateway Service API Reference</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders">Storage Gateway required request headers</a>: Describes the required headers that you must send with every POST request to Storage Gateway.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewaySigningRequests">Signing requests</a>: Storage Gateway re..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:storagegateway, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/storagegateway-2013-06-30.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/storagegateway/ }\nupdated: 2020-04-30T20:18:10.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10100], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-06-30: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-06-30, x-release:v4, title:AWS Storage Gateway, description:<fullname>Storage Gateway Service</fullname> <p>Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>Storage Gateway Service API Reference</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders">Storage Gateway required request headers</a>: Describes the required headers that you must send with every POST request to Storage Gateway.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/storagegateway/ }, updated:2020-04-30T20:18:10.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/storagegateway/2013-06-30/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-06-30: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:storagegateway: DataRow\">amazonaws.com:storagegateway</span>", children: [10066, 10067, 10101], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-06-30\nversions: { 2013-06-30:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-06-30, x-release:v4, title:AWS Storage Gateway, description:<fullname>Storage Gateway Service</fullname> <p>Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Cloud for cost effective backup and rapid disaster recovery.</p> <p>Use the following links to get started using the <i>Storage Gateway Service API Reference</i>:</p> <ul> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders">Storage Gateway required request headers</a>: Describes the required headers that you must send with every POST request to Storage Gateway.</p> </li> <li> <p> <a href="https://docs.aws.amazon.com/storagegateway/lat... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-08-10"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-08-10"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon DynamoDB Streams"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html">Capturing Table Activity with DynamoDB Streams</a> in the Amazon DynamoDB Developer Guide.</p>\"><fullname>Amazon DynamoDB</fullname> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10110, 10111], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10114, 10115, 10116, 10117], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10119, 10120], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["streams.dynamodb"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["dynamodb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410457, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10126], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10106, 10107, 10108, 10109, 10112, 10113, 10118, 10121, 10122, 10123, 10124, 10125, 10127, 10128, 10129], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-08-10\nx-release: v4\ntitle: Amazon DynamoDB Streams\ndescription: <fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html">Capturing Table Activity with DynamoDB Streams</a> in the Amazon DynamoDB Developer Guide.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: streams.dynamodb\nx-aws-signingName: dynamodb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-08-10<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/dynamodb/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10131, 10132], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/dynamodb/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-08-10: DataRow\">2012-08-10</span>", children: [10105, 10130, 10133, 10134, 10135, 10136, 10137], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-08-10, x-release:v4, title:Amazon DynamoDB Streams, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html">Capturing Table Activity with DynamoDB Streams</a> in the Amazon DynamoDB Developer Guide.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:streams.dynamodb, x-aws-signingName:dynamodb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/streams.dynamodb-2012-08-10.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dynamodb/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10138], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-08-10: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-08-10, x-release:v4, title:Amazon DynamoDB Streams, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html">Capturing Table Activity with DynamoDB Streams</a> in the Amazon DynamoDB Developer Guide.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:streams.dynamodb, x-aws-signingName:dynamodb, x-origin:[1 x 4] { contentType:application/json, url:https://ra..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/dynamodb/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/streams.dynamodb/2012-08-10/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-08-10: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:streams.dynamodb: DataRow\">amazonaws.com:streams.dynamodb</span>", children: [10103, 10104, 10139], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-08-10\nversions: { 2012-08-10:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-08-10, x-release:v4, title:Amazon DynamoDB Streams, description:<fullname>Amazon DynamoDB</fullname> <p>Amazon DynamoDB Streams provides API actions for accessing streams and processing stream records. To learn more about application development with Streams, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html">Capturing Table Activity with DynamoDB Streams</a> in the Amazon DynamoDB Developer Guide.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:streams.dynamodb, x-aws-signingName:dynamodb, x-origin:[1 x 4] { conte... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2011-06-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-05-02T07:59:53.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2011-06-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Security Token Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Security Token Service</fullname> <p>Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a>.</p>\"><fullname>Security Token Service</ful<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10148, 10149], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10152, 10153, 10154, 10155], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10157, 10158], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sts"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410458, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10163], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10144, 10145, 10146, 10147, 10150, 10151, 10156, 10159, 10160, 10161, 10162, 10164, 10165, 10166], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2011-06-15\nx-release: v4\ntitle: AWS Security Token Service\ndescription: <fullname>Security Token Service</fullname> <p>Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: sts\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2011-06-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/sts/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10168, 10169], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/sts/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-29T15:19:43.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2011-06-15: DataRow\">2011-06-15</span>", children: [10143, 10167, 10170, 10171, 10172, 10173, 10174], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\ninfo: { version:2011-06-15, x-release:v4, title:AWS Security Token Service, description:<fullname>Security Token Service</fullname> <p>Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sts, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/sts-2011-06-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sts/ }\nupdated: 2020-03-29T15:19:43.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10175], rightAlign: false, values: ["<span class=\"formatted\" title=\"2011-06-15: { added:2017-05-02T07:59:53.000Z, info:{ version:2011-06-15, x-release:v4, title:AWS Security Token Service, description:<fullname>Security Token Service</fullname> <p>Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:sts, x-origin:[1 x 4] { ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/sts/ }, updated:2020-03-29T15:19:43.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/sts/2011-06-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2011-06-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:sts: DataRow\">amazonaws.com:sts</span>", children: [10141, 10142, 10176], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-05-02T07:59:53.000Z\npreferred: 2011-06-15\nversions: { 2011-06-15:{ added:2017-05-02T07:59:53.000Z, info:{ version:2011-06-15, x-release:v4, title:AWS Security Token Service, description:<fullname>Security Token Service</fullname> <p>Security Token Service (STS) enables you to request temporary, limited-privilege credentials for Identity and Access Management (IAM) users or for users that you authenticate (federated users). This guide provides descriptions of the STS API. For more information about using this service, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html">Temporary Security Credentials</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com,... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-05-02T07:59:53.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2013-04-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2013-04-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Support"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Support</fullname> <p>The <i>AWS Support API Reference</i> is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan to use the AWS Support API. </p> </li> <li> <p>If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the <code>SubscriptionRequiredException</code> error message appears. For information about changing your support plan, see <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a>.</p> </li> </ul> </note> <p>The AWS Support service also exposes a set of <a href="http://aws.amazon.com/premiumsupport/trustedadvisor/">AWS Trusted Advisor</a> features. You can retrieve a list of checks and their descriptions, get check results, specify checks to refresh, and get the refresh status of checks.</p> <p>The following list describes the AWS Support case management operations:</p> <ul> <li> <p> Service names, issue categories, and available severity levels - The <a>DescribeServices</a> and <a>DescribeSeverityLevels</a> operations return AWS service names, service codes, service categories, and problem severity levels. You use these values when you call the <a>CreateCase</a> operation.</p> </li> <li> <p> Case creation, case details, and case resolution - The <a>CreateCase</a>, <a>DescribeCases</a>, <a>DescribeAttachment</a>, and <a>ResolveCase</a> operations create AWS Support cases, retrieve information about cases, and resolve cases.</p> </li> <li> <p> Case communication - The <a>DescribeCommunications</a>, <a>AddCommunicationToCase</a>, and <a>AddAttachmentsToSet</a> operations retrieve and add communications and attachments to AWS Support cases.</p> </li> </ul> <p>The following list describes the operations available from the AWS Support service for Trusted Advisor:</p> <ul> <li> <p> <a>DescribeTrustedAdvisorChecks</a> returns the list of checks that run against your AWS resources.</p> </li> <li> <p>Using the <code>checkId</code> for a specific check returned by <a>DescribeTrustedAdvisorChecks</a>, you can call <a>DescribeTrustedAdvisorCheckResult</a> to obtain the results for the check that you specified.</p> </li> <li> <p> <a>DescribeTrustedAdvisorCheckSummaries</a> returns summarized results for one or more Trusted Advisor checks.</p> </li> <li> <p> <a>RefreshTrustedAdvisorCheck</a> requests that Trusted Advisor rerun a specified check.</p> </li> <li> <p> <a>DescribeTrustedAdvisorCheckRefreshStatuses</a> reports the refresh status of one or more checks.</p> </li> </ul> <p>For authentication of requests, AWS Support uses <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>.</p> <p>See <a href="https://docs.aws.amazon.com/awssupport/latest/user/Welcome.html">About the AWS Support API</a> in the <i>AWS Support User Guide</i> for information about how to use this service to create and manage your support cases, and how to call Trusted Advisor for results of checks on your resources.</p>\"><fullname>AWS Support</fullname> <p>T<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10185, 10186], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10189, 10190, 10191, 10192], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10194, 10195], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["support"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410459, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10200], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10181, 10182, 10183, 10184, 10187, 10188, 10193, 10196, 10197, 10198, 10199, 10201, 10202, 10203], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2013-04-15\nx-release: v4\ntitle: AWS Support\ndescription: <fullname>AWS Support</fullname> <p>The <i>AWS Support API Reference</i> is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan to use the AWS Support API. </p> </li> <li> <p>If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the <code>SubscriptionRequiredException</code> error message appears. For information about changing your support plan, see <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a>.</p> </li> </ul> </note> <p>The AWS Support service also exposes a set of <a href="http://aws.amazon.com/premiumsupport/trustedadvisor/">AWS Trusted Advisor</a> features. You can retrieve a list of checks and their descriptions, get check results, specify checks to refresh, and get the refresh status of checks.</p> <p>The following list describes the AWS Support case management operations:</p> <ul> <li> <p> Service names, issue categories, and available severity levels - The <a>DescribeServices</a> and <a>DescribeSeverityLevels</a> operations return AWS service names, service codes, service categories, and problem severity levels. You use these values when you call the <a>CreateCase</a> operation.</p> </li> <li> <p> Case creation, case details, and case resolution - The <a>CreateCase</a>, <a>DescribeCases</a>, <a>DescribeAttachment</a>, and <a>ResolveCase</a> operations create AWS Support cases, retrieve information about cases, and resolve cases.</p> </li> <li> <p> Case communication - The <a>DescribeCommunications</a>, <a>AddCommunicationToCase</a>, and <a>AddAttachmentsToSet</a> operations retrieve and add communications and attachments to AWS Support cases.</p> </li> </ul> <p>The following list describes the operations available from the AWS Support service for Trusted Advisor:</p> <ul> <li> <p> <a>DescribeTrustedAdvisorChecks</a> returns the list of checks that run against your AWS resources.</p> </li> <li> <p>Using the <code>checkId</code> for a specific check returned by <a>DescribeTrustedAdvisorChecks</a>, you can call <a>DescribeTrustedAdvisorCheckResult</a> to obtain the results for the check that you specified.</p> </li> <li> <p> <a>DescribeTrustedAdvisorCheckSummaries</a> returns summarized results for one or more Trusted Advisor checks.</p> </li> <li> <p> <a>RefreshTrustedAdvisorCheck</a> requests that Trusted Advisor rerun a specified check.</p> </li> <li> <p> <a>DescribeTrustedAdvisorCheckRefreshStatuses</a> reports the refresh status of one or more checks.</p> </li> </ul> <p>For authentication of requests, AWS Support uses <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>.</p> <p>See <a href="https://docs.aws.amazon.com/awssupport/latest/user/Welcome.html">About the AWS Support API</a> in the <i>AWS Support User Guide</i> for information about how to use this service to create and manage your support cases, and how to call Trusted Advisor for results of checks on your resources.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: support\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2013-04-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/support/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10205, 10206], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/support/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-05T20:20:19.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2013-04-15: DataRow\">2013-04-15</span>", children: [10180, 10204, 10207, 10208, 10209, 10210, 10211], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2013-04-15, x-release:v4, title:AWS Support, description:<fullname>AWS Support</fullname> <p>The <i>AWS Support API Reference</i> is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan to use the AWS Support API. </p> </li> <li> <p>If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the <code>SubscriptionRequiredException</code> error message appears. For information about changing your support plan, see <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a>.</p> </li> </ul> </note> <p>The AWS Support service also exposes a set of <a href="http://aws.amazon.com/premiumsupport/trustedadvisor/">AWS Trusted Advisor</a> features. You can retrieve a list of checks and their descriptions, get check results, specify che..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:support, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/support-2013-04-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/support/ }\nupdated: 2020-05-05T20:20:19.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10212], rightAlign: false, values: ["<span class=\"formatted\" title=\"2013-04-15: { added:2020-02-28T16:47:57.000Z, info:{ version:2013-04-15, x-release:v4, title:AWS Support, description:<fullname>AWS Support</fullname> <p>The <i>AWS Support API Reference</i> is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan to use the AWS Support API. </p> </li> <li> <p>If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the <code>SubscriptionRequiredException</code> error message appears. For information about changing your support plan, see <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a>.</p> </li> </ul> </note> <p>The AWS Support service also exposes a set of <a href="http://aws.amazon.com/premiumsupport/trustedadvisor/">AWS Trusted Advisor</a> features. You can retrieve a li..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/support/ }, updated:2020-05-05T20:20:19.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2013-04-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:support: DataRow\">amazonaws.com:support</span>", children: [10178, 10179, 10213], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2013-04-15\nversions: { 2013-04-15:{ added:2020-02-28T16:47:57.000Z, info:{ version:2013-04-15, x-release:v4, title:AWS Support, description:<fullname>AWS Support</fullname> <p>The <i>AWS Support API Reference</i> is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format.</p> <note> <ul> <li> <p>You must have a Business or Enterprise Support plan to use the AWS Support API. </p> </li> <li> <p>If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the <code>SubscriptionRequiredException</code> error message appears. For information about changing your support plan, see <a href="http://aws.amazon.com/premiumsupport/">AWS Support</a>.</p> </li> </ul> </note> <p>The AWS Support service also exposes a set of <a href="http://aws.amazon.com/premiumsupport/trustedadvisor/">AWS Trusted Advi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2012-01-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2012-01-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Simple Workflow Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <i> <a href="https://docs.aws.amazon.com/amazonswf/latest/developerguide/">Amazon SWF Developer Guide</a> </i>.</p>\"><fullname>Amazon Simple Workflow Serv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10222, 10223], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10226, 10227, 10228, 10229], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10231, 10232], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["swf"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410460, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10237], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10218, 10219, 10220, 10221, 10224, 10225, 10230, 10233, 10234, 10235, 10236, 10238, 10239, 10240], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2012-01-25\nx-release: v4\ntitle: Amazon Simple Workflow Service\ndescription: <fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <i> <a href="https://docs.aws.amazon.com/amazonswf/latest/developerguide/">Amazon SWF Developer Guide</a> </i>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: swf\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2012-01-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/swf/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10242, 10243], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/swf/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2012-01-25: DataRow\">2012-01-25</span>", children: [10217, 10241, 10244, 10245, 10246, 10247, 10248], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2012-01-25, x-release:v4, title:Amazon Simple Workflow Service, description:<fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <i> <a href="https://docs.aws.amazon.com/amazonswf/latest/developerguide/">Amazon SWF Developer Guide</a> </i>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:swf, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/swf-2012-01-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/swf/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10249], rightAlign: false, values: ["<span class=\"formatted\" title=\"2012-01-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2012-01-25, x-release:v4, title:Amazon Simple Workflow Service, description:<fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <i> <a href="https://docs.aws.amazon.com/amazonswf/latest/developerguide/">Amazon SWF Developer Guide</a> </i>..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/swf/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/swf/2012-01-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2012-01-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:swf: DataRow\">amazonaws.com:swf</span>", children: [10215, 10216, 10250], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2012-01-25\nversions: { 2012-01-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2012-01-25, x-release:v4, title:Amazon Simple Workflow Service, description:<fullname>Amazon Simple Workflow Service</fullname> <p>The Amazon Simple Workflow Service (Amazon SWF) makes it easy to build applications that use Amazon's cloud to coordinate work across distributed components. In Amazon SWF, a <i>task</i> represents a logical unit of work that is performed by a component of your workflow. Coordinating tasks in a workflow involves managing intertask dependencies, scheduling, and concurrency in accordance with the logical flow of the application.</p> <p>Amazon SWF gives you full control over implementing tasks and coordinating them without worrying about underlying complexities such as tracking their progress and maintaining their state.</p> <p>This documentation serves as reference only. For a broader overview of the Amazon SWF programming model, see the <i> <a href="https://docs.aws.amazon.com/amazonswf/latest/developerguid... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-21T06:33:24.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-11"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-21T06:33:24.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-11"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Synthetics"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon CloudWatch Synthetics</fullname> <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage <i>canaries</i>, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ServiceLens.html">Using ServiceLens to Monitor the Health of Your Applications</a> in the <i>Amazon CloudWatch User Guide</i>.</p> <p>Before you create and manage canaries, be aware of the security considerations. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html">Security Considerations for Synthetics Canaries</a>.</p>\"><fullname>Amazon CloudWatch Synthetic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10259, 10260], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10263, 10264, 10265, 10266], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10268, 10269], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["synthetics"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["synthetics"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410461, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10275], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10255, 10256, 10257, 10258, 10261, 10262, 10267, 10270, 10271, 10272, 10273, 10274, 10276, 10277, 10278], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-11\nx-release: v4\ntitle: Synthetics\ndescription: <fullname>Amazon CloudWatch Synthetics</fullname> <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage <i>canaries</i>, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ServiceLens.html">Using ServiceLens to Monitor the Health of Your Applications</a> in the <i>Amazon CloudWatch User Guide</i>.</p> <p>Before you create and manage canaries, be aware of the security considerations. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html">Security Considerations for Synthetics Canaries</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: synthetics\nx-aws-signingName: synthetics\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-11<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/synthetics/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10280, 10281], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/synthetics/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-21T06:33:24.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-11: DataRow\">2017-10-11</span>", children: [10254, 10279, 10282, 10283, 10284, 10285, 10286], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-21T06:33:24.000Z\ninfo: { version:2017-10-11, x-release:v4, title:Synthetics, description:<fullname>Amazon CloudWatch Synthetics</fullname> <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage <i>canaries</i>, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ServiceLens.html">Using ServiceLens to Monitor the Health of Your Applications</a> in the <i>Amazon CloudWatch User Guide</i>.</p> <p>Before you create and manage canaries, be aware of the security considerations. For more information, see <a href..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:synthetics, x-aws-signingName:synthetics, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/synthetics-2017-10-11.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/synthetics/ }\nupdated: 2020-04-21T06:33:24.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-21T06:33:24.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10287], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-11: { added:2020-04-21T06:33:24.000Z, info:{ version:2017-10-11, x-release:v4, title:Synthetics, description:<fullname>Amazon CloudWatch Synthetics</fullname> <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage <i>canaries</i>, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ServiceLens.html">Using ServiceLens to Monitor the Health of Your Applications</a> in the <i>Amazon CloudWatch User Guide</i>.</p> <p>Before you create and manage canaries, be aware..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/synthetics/ }, updated:2020-04-21T06:33:24.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/synthetics/2017-10-11/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-11: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:synthetics: DataRow\">amazonaws.com:synthetics</span>", children: [10252, 10253, 10288], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-21T06:33:24.000Z\npreferred: 2017-10-11\nversions: { 2017-10-11:{ added:2020-04-21T06:33:24.000Z, info:{ version:2017-10-11, x-release:v4, title:Synthetics, description:<fullname>Amazon CloudWatch Synthetics</fullname> <p>You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage <i>canaries</i>, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/ServiceLens.html">Using ServiceLens to Monitor the Health of Your Applications</a> in the <i>Amazon CloudWatch User Guide</i>.</p> <p>Before y... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-21T06:33:24.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-27"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-27"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Textract"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract.\">Amazon Textract detects and analyzes <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10297, 10298], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10301, 10302, 10303, 10304], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10306, 10307], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["textract"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410462, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10312], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10293, 10294, 10295, 10296, 10299, 10300, 10305, 10308, 10309, 10310, 10311, 10313, 10314, 10315], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-06-27\nx-release: v4\ntitle: Amazon Textract\ndescription: Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: textract\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-06-27<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/textract/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10317, 10318], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/textract/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-06-27: DataRow\">2018-06-27</span>", children: [10292, 10316, 10319, 10320, 10321, 10322, 10323], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-06-27, x-release:v4, title:Amazon Textract, description:Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:textract, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/textract-2018-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/textract/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10324], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-27: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-27, x-release:v4, title:Amazon Textract, description:Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:textract, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/textract-2018-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/reg..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/textract/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/textract/2018-06-27/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-27: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:textract: DataRow\">amazonaws.com:textract</span>", children: [10290, 10291, 10325], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-06-27\nversions: { 2018-06-27:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-06-27, x-release:v4, title:Amazon Textract, description:Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:textract, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/textract-2018-06-27.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://por... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Timestream Query"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: [" "] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10334, 10335], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10338, 10339, 10340, 10341], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10343, 10344], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["timestream-query"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["timestream"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410463, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10350], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10330, 10331, 10332, 10333, 10336, 10337, 10342, 10345, 10346, 10347, 10348, 10349, 10351, 10352, 10353], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-01\nx-release: v4\ntitle: Amazon Timestream Query\ndescription: \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: timestream-query\nx-aws-signingName: timestream\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/timestream/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10355, 10356], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/timestream/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-01: DataRow\">2018-11-01</span>", children: [10329, 10354, 10357, 10358, 10359, 10360], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2018-11-01, x-release:v4, title:Amazon Timestream Query, description: , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:timestream-query, x-aws-signingName:timestream, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/timestream-query-2018-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/timestream/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10361], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2018-11-01, x-release:v4, title:Amazon Timestream Query, description: , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:timestream-query, x-aws-signingName:timestream, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/timestream-query-2018-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/timestream/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/timestream-query/2018-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:timestream-query: DataRow\">amazonaws.com:timestream-query</span>", children: [10327, 10328, 10362], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2018-11-01\nversions: { 2018-11-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2018-11-01, x-release:v4, title:Amazon Timestream Query, description: , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:timestream-query, x-aws-signingName:timestream, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/timestream-query-2018-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Timestream Write"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans across storage tiers to provide fast analysis while reducing costs.\">Amazon Timestream is a fast, scalable<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10371, 10372], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10375, 10376, 10377, 10378], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10380, 10381], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["timestream-write"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["timestream"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410464, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10387], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10367, 10368, 10369, 10370, 10373, 10374, 10379, 10382, 10383, 10384, 10385, 10386, 10388, 10389, 10390], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-01\nx-release: v4\ntitle: Amazon Timestream Write\ndescription: Amazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans across storage tiers to provide fast analysis while reducing costs.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: timestream-write\nx-aws-signingName: timestream\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/timestream/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10392, 10393], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/timestream/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-01: DataRow\">2018-11-01</span>", children: [10366, 10391, 10394, 10395, 10396, 10397], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2018-11-01, x-release:v4, title:Amazon Timestream Write, description:Amazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans across storage tiers to provide fast analysis while reducing costs., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:timestream-write, x-aws-signingName:timestream, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/timestream-write-2018-11-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/timestream/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10398], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-01: { added:2021-01-15T15:07:17.488Z, info:{ version:2018-11-01, x-release:v4, title:Amazon Timestream Write, description:Amazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans across storage tiers to provide fast an..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/timestream/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/timestream-write/2018-11-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:timestream-write: DataRow\">amazonaws.com:timestream-write</span>", children: [10364, 10365, 10399], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2018-11-01\nversions: { 2018-11-01:{ added:2021-01-15T15:07:17.488Z, info:{ version:2018-11-01, x-release:v4, title:Amazon Timestream Write, description:Amazon Timestream is a fast, scalable, fully managed time series database service that makes it easy to store and analyze trillions of time series data points per day. With Timestream, you can easily store and analyze IoT sensor data to derive insights from your IoT applications. You can analyze industrial telemetry to streamline equipment management and maintenance. You can also store and analyze log data and metrics to improve the performance and availability of your applications. Timestream is built from the ground up to effectively ingest, process, and store time series data. It organizes data to optimize query processing. It automatically scales based on the volume of data ingested and on the query volume to ensure you receive optimal performance while inserting and querying data. As your data grows over time, Timestream’s adaptive query processing engine spans ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-26"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-26"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Transcribe Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Operations and objects for transcribing speech to text.\">Operations and objects for transcribi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10408, 10409], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10412, 10413, 10414, 10415], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10417, 10418], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transcribe"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["transcribe"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410465, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10424], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10404, 10405, 10406, 10407, 10410, 10411, 10416, 10419, 10420, 10421, 10422, 10423, 10425, 10426, 10427], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-26\nx-release: v4\ntitle: Amazon Transcribe Service\ndescription: Operations and objects for transcribing speech to text.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: transcribe\nx-aws-signingName: transcribe\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-26<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/transcribe/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10429, 10430], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/transcribe/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-26: DataRow\">2017-10-26</span>", children: [10403, 10428, 10431, 10432, 10433, 10434, 10435], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-26, x-release:v4, title:Amazon Transcribe Service, description:Operations and objects for transcribing speech to text., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:transcribe, x-aws-signingName:transcribe, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/transcribe-2017-10-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/transcribe/ }\nupdated: 2020-04-29T20:05:58.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10436], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-26: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-26, x-release:v4, title:Amazon Transcribe Service, description:Operations and objects for transcribing speech to text., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:transcribe, x-aws-signingName:transcribe, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/transcribe-2017-10-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[clou..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/transcribe/ }, updated:2020-04-29T20:05:58.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/transcribe/2017-10-26/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-26: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:transcribe: DataRow\">amazonaws.com:transcribe</span>", children: [10401, 10402, 10437], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-26\nversions: { 2017-10-26:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-26, x-release:v4, title:Amazon Transcribe Service, description:Operations and objects for transcribing speech to text., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:transcribe, x-aws-signingName:transcribe, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/transcribe-2017-10-26.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-11-05"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-11-05"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Transfer Family"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Web Services Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protocol (SFTP) directly into and out of Amazon Simple Storage Service (Amazon S3). Amazon Web Services helps you seamlessly migrate your file transfer workflows to Amazon Web Services Transfer Family by integrating with existing authentication systems, and providing DNS routing with Amazon Route 53 so nothing changes for your customers and partners, or their applications. With your data in Amazon S3, you can use it with Amazon Web Services services for processing, analytics, machine learning, and archiving. Getting started with Amazon Web Services Transfer Family is easy since there is no infrastructure to buy and set up.\">Amazon Web Services Transfer Family i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10446, 10447], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10450, 10451, 10452, 10453], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10455, 10456], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transfer"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["transfer"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410466, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10462], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10442, 10443, 10444, 10445, 10448, 10449, 10454, 10457, 10458, 10459, 10460, 10461, 10463, 10464, 10465], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-11-05\nx-release: v4\ntitle: AWS Transfer Family\ndescription: Amazon Web Services Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protocol (SFTP) directly into and out of Amazon Simple Storage Service (Amazon S3). Amazon Web Services helps you seamlessly migrate your file transfer workflows to Amazon Web Services Transfer Family by integrating with existing authentication systems, and providing DNS routing with Amazon Route 53 so nothing changes for your customers and partners, or their applications. With your data in Amazon S3, you can use it with Amazon Web Services services for processing, analytics, machine learning, and archiving. Getting started with Amazon Web Services Transfer Family is easy since there is no infrastructure to buy and set up.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: transfer\nx-aws-signingName: transfer\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-11-05<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/transfer/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10467, 10468], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/transfer/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-23T20:32:41.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-11-05: DataRow\">2018-11-05</span>", children: [10441, 10466, 10469, 10470, 10471, 10472, 10473], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-11-05, x-release:v4, title:AWS Transfer Family, description:Amazon Web Services Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protocol (SFTP) directly into and out of Amazon Simple Storage Service (Amazon S3). Amazon Web Services helps you seamlessly migrate your file transfer workflows to Amazon Web Services Transfer Family by integrating with existing authentication systems, and providing DNS routing with Amazon Route 53 so nothing changes for your customers and partners, or their applications. With your data in Amazon S3, you can use it with Amazon Web Services services for processing, analytics, machine learning, and archiving. Getting started with Amazon Web Services Transfer Family is easy since there is no infrastructure to buy and set up., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:transfer, x-aws-signingName:transfer, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/transfer-2018-11-05.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/transfer/ }\nupdated: 2020-04-23T20:32:41.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10474], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-11-05: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-05, x-release:v4, title:AWS Transfer Family, description:Amazon Web Services Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protocol (SFTP) directly into and out of Amazon Simple Storage Service (Amazon S3). Amazon Web Services helps you seamlessly migrate your file transfer workflows to Amazon Web Services Transfer Family by integrating with existing authentication systems, and providing DNS routing with Amazon Route 53 so nothing changes for your customers and partners, or their applications. With your data in Amazon S3, you can use it with Amazon Web Services services for processing, analytics, machine learning, and archiving. Getting started with Amazon Web Services Transfer Family is easy since there is no infrastructure to buy and set up., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_p..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/transfer/ }, updated:2020-04-23T20:32:41.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/transfer/2018-11-05/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-11-05: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:transfer: DataRow\">amazonaws.com:transfer</span>", children: [10439, 10440, 10475], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-11-05\nversions: { 2018-11-05:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-11-05, x-release:v4, title:AWS Transfer Family, description:Amazon Web Services Transfer Family is a fully managed service that enables the transfer of files over the File Transfer Protocol (FTP), File Transfer Protocol over SSL (FTPS), or Secure Shell (SSH) File Transfer Protocol (SFTP) directly into and out of Amazon Simple Storage Service (Amazon S3). Amazon Web Services helps you seamlessly migrate your file transfer workflows to Amazon Web Services Transfer Family by integrating with existing authentication systems, and providing DNS routing with Amazon Route 53 so nothing changes for your customers and partners, or their applications. With your data in Amazon S3, you can use it with Amazon Web Services services for processing, analytics, machine learning, and archiving. Getting started with Amazon Web Services Transfer Family is easy since there is no infrastructure to buy and set up., x-logo:{ url:https://api.apis.guru/v2/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-07-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Translate"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Provides translation between one source language and another of the same set of languages.\">Provides translation between one sour<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10484, 10485], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10488, 10489, 10490, 10491], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10493, 10494], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["translate"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["translate"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410467, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10500], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10480, 10481, 10482, 10483, 10486, 10487, 10492, 10495, 10496, 10497, 10498, 10499, 10501, 10502, 10503], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-07-01\nx-release: v4\ntitle: Amazon Translate\ndescription: Provides translation between one source language and another of the same set of languages.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: translate\nx-aws-signingName: translate\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-07-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/translate/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10505, 10506], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/translate/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-07-01: DataRow\">2017-07-01</span>", children: [10479, 10504, 10507, 10508, 10509, 10510, 10511], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-07-01, x-release:v4, title:Amazon Translate, description:Provides translation between one source language and another of the same set of languages., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:translate, x-aws-signingName:translate, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/translate-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/translate/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10512], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-07-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-01, x-release:v4, title:Amazon Translate, description:Provides translation between one source language and another of the same set of languages., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:translate, x-aws-signingName:translate, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/translate-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-ap..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/translate/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/translate/2017-07-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-07-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:translate: DataRow\">amazonaws.com:translate</span>", children: [10477, 10478, 10513], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-07-01\nversions: { 2017-07-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-07-01, x-release:v4, title:Amazon Translate, description:Provides translation between one source language and another of the same set of languages., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:translate, x-aws-signingName:translate, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/translate-2017-07-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/r... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-08-24"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-08-24"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS WAF"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<note> <p>This is <b>AWS WAF Classic</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data types, and errors. For detailed information about AWS WAF Classic features and an overview of how to use the AWS WAF Classic API, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p>\"><note> <p>This is <b>AWS WAF Classic<<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10522, 10523], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10526, 10527, 10528, 10529], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10531, 10532], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["waf"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410468, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10537], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10518, 10519, 10520, 10521, 10524, 10525, 10530, 10533, 10534, 10535, 10536, 10538, 10539, 10540], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-08-24\nx-release: v4\ntitle: AWS WAF\ndescription: <note> <p>This is <b>AWS WAF Classic</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data types, and errors. For detailed information about AWS WAF Classic features and an overview of how to use the AWS WAF Classic API, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: waf\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-08-24<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/waf/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10542, 10543], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/waf/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-08-24: DataRow\">2015-08-24</span>", children: [10517, 10541, 10544, 10545, 10546, 10547, 10548], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-08-24, x-release:v4, title:AWS WAF, description:<note> <p>This is <b>AWS WAF Classic</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data types, and errors. For detailed information about AWS WAF Classic..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:waf, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/waf-2015-08-24.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/waf/ }\nupdated: 2020-04-29T20:05:58.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10549], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-08-24: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-24, x-release:v4, title:AWS WAF, description:<note> <p>This is <b>AWS WAF Classic</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data ty..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/waf/ }, updated:2020-04-29T20:05:58.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/waf/2015-08-24/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-08-24: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:waf: DataRow\">amazonaws.com:waf</span>", children: [10515, 10516, 10550], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-08-24\nversions: { 2015-08-24:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-08-24, x-release:v4, title:AWS WAF, description:<note> <p>This is <b>AWS WAF Classic</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Classic API Reference</i> for using AWS WAF Classic with Amazon CloudFront. The AWS WAF Classic actions and data types listed in the reference are available for protecting Amazon CloudFront distributions. You can use these actions and data types via the endpoint <i>waf.amazonaws.com</i>. This guide is for developers who need detailed information about t... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-11-28"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS WAF Regional"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<note> <p>This is <b>AWS WAF Classic Regional</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Regional Classic API Reference</i> for using AWS WAF Classic with the AWS resources, Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. The AWS WAF Classic actions and data types listed in the reference are available for protecting Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. You can use these actions and data types by means of the endpoints listed in <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#waf_region">AWS Regions and Endpoints</a>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data types, and errors. For detailed information about AWS WAF Classic features and an overview of how to use the AWS WAF Classic API, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p>\"><note> <p>This is <b>AWS WAF Classic <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10559, 10560], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10563, 10564, 10565, 10566], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10568, 10569], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["waf-regional"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410469, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10574], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10555, 10556, 10557, 10558, 10561, 10562, 10567, 10570, 10571, 10572, 10573, 10575, 10576, 10577], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-11-28\nx-release: v4\ntitle: AWS WAF Regional\ndescription: <note> <p>This is <b>AWS WAF Classic Regional</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Regional Classic API Reference</i> for using AWS WAF Classic with the AWS resources, Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. The AWS WAF Classic actions and data types listed in the reference are available for protecting Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. You can use these actions and data types by means of the endpoints listed in <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#waf_region">AWS Regions and Endpoints</a>. This guide is for developers who need detailed information about the AWS WAF Classic API actions, data types, and errors. For detailed information about AWS WAF Classic features and an overview of how to use the AWS WAF Classic API, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: waf-regional\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-11-28<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/waf-regional/\">https://docs.aws.amazon.com/waf-regio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10579, 10580], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/waf-regional/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-04-29T20:05:58.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-11-28: DataRow\">2016-11-28</span>", children: [10554, 10578, 10581, 10582, 10583, 10584, 10585], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-11-28, x-release:v4, title:AWS WAF Regional, description:<note> <p>This is <b>AWS WAF Classic Regional</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Regional Classic API Reference</i> for using AWS WAF Classic with the AWS resources, Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. The AWS WAF Classic actions and data types listed in the reference are available for protecting Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. You can use these actions and data types by means of the endpoints listed in <a href="https://docs.aws.amazon.c..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:waf-regional, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/waf-regional-2016-11-28.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/waf-regional/ }\nupdated: 2020-04-29T20:05:58.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10586], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-11-28: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:AWS WAF Regional, description:<note> <p>This is <b>AWS WAF Classic Regional</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Regional Classic API Reference</i> for using AWS WAF Classic with the AWS resources, Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. The AWS WAF Classic actions and data types listed in the reference are available for protecting Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. You can use these actions and data type..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/waf-regional/ }, updated:2020-04-29T20:05:58.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/waf-regional/2016-11-28/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-11-28: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:waf-regional: DataRow\">amazonaws.com:waf-regional</span>", children: [10552, 10553, 10587], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-11-28\nversions: { 2016-11-28:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-11-28, x-release:v4, title:AWS WAF Regional, description:<note> <p>This is <b>AWS WAF Classic Regional</b> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.</p> <p> <b>For the latest version of AWS WAF</b>, use the AWS WAFV2 API and see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF Developer Guide</a>. With the latest version, AWS WAF has a single set of endpoints for regional and global use. </p> </note> <p>This is the <i>AWS WAF Regional Classic API Reference</i> for using AWS WAF Classic with the AWS resources, Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. The AWS WAF Classic actions and data types listed in the reference are available for protecting Elastic Load Balancing (ELB) Application Load Balancers and API Gateway APIs. ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-07-29"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-07-29"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS WAFV2"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>WAF</fullname> <note> <p>This is the latest version of the <b>WAF</b> API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.</p> <p>If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces. </p> <p>For information, including how to migrate your WAF resources to this version, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF Developer Guide</a>. </p> </note> <p>WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to Amazon CloudFront, an Amazon API Gateway REST API, an Application Load Balancer, or an AppSync GraphQL API. WAF also lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, the Amazon API Gateway REST API, CloudFront distribution, the Application Load Balancer, or the AppSync GraphQL API responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You also can configure CloudFront to return a custom error page when a request is blocked.</p> <p>This API guide is for developers who need detailed information about WAF API actions, data types, and errors. For detailed information about WAF features and an overview of how to use WAF, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html">WAF Developer Guide</a>.</p> <p>You can make calls using the endpoints listed in <a href="https://docs.aws.amazon.com/general/latest/gr/waf.html">WAF endpoints and quotas</a>. </p> <ul> <li> <p>For regional applications, you can use any of the endpoints in the list. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, or an AppSync GraphQL API. </p> </li> <li> <p>For Amazon CloudFront applications, you must use the API endpoint listed for US East (N. Virginia): us-east-1.</p> </li> </ul> <p>Alternatively, you can use one of the Amazon Web Services SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services SDKs</a>.</p> <p>We currently provide two versions of the WAF API: this API and the prior versions, the classic WAF APIs. This new API provides the same functionality as the older versions, with the following major improvements:</p> <ul> <li> <p>You use one API for both global and regional applications. Where you need to distinguish the scope, you specify a <code>Scope</code> parameter and set it to <code>CLOUDFRONT</code> or <code>REGIONAL</code>. </p> </li> <li> <p>You can define a web ACL or rule group with a single call, and update it with a single call. You define all rule specifications in JSON format, and pass them to your rule group or web ACL calls.</p> </li> <li> <p>The limits WAF places on the use of rules more closely reflects the cost of running each type of rule. Rule groups include capacity settings, so you know the maximum cost of a rule group when you use it.</p> </li> </ul>\"><fullname>WAF</fullname> <note> <p>Th<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10596, 10597], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10600, 10601, 10602, 10603], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10605, 10606], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["wafv2"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410470, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10611], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10592, 10593, 10594, 10595, 10598, 10599, 10604, 10607, 10608, 10609, 10610, 10612, 10613, 10614], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-07-29\nx-release: v4\ntitle: AWS WAFV2\ndescription: <fullname>WAF</fullname> <note> <p>This is the latest version of the <b>WAF</b> API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.</p> <p>If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces. </p> <p>For information, including how to migrate your WAF resources to this version, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF Developer Guide</a>. </p> </note> <p>WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to Amazon CloudFront, an Amazon API Gateway REST API, an Application Load Balancer, or an AppSync GraphQL API. WAF also lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, the Amazon API Gateway REST API, CloudFront distribution, the Application Load Balancer, or the AppSync GraphQL API responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You also can configure CloudFront to return a custom error page when a request is blocked.</p> <p>This API guide is for developers who need detailed information about WAF API actions, data types, and errors. For detailed information about WAF features and an overview of how to use WAF, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html">WAF Developer Guide</a>.</p> <p>You can make calls using the endpoints listed in <a href="https://docs.aws.amazon.com/general/latest/gr/waf.html">WAF endpoints and quotas</a>. </p> <ul> <li> <p>For regional applications, you can use any of the endpoints in the list. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, or an AppSync GraphQL API. </p> </li> <li> <p>For Amazon CloudFront applications, you must use the API endpoint listed for US East (N. Virginia): us-east-1.</p> </li> </ul> <p>Alternatively, you can use one of the Amazon Web Services SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see <a href="http://aws.amazon.com/tools/#SDKs">Amazon Web Services SDKs</a>.</p> <p>We currently provide two versions of the WAF API: this API and the prior versions, the classic WAF APIs. This new API provides the same functionality as the older versions, with the following major improvements:</p> <ul> <li> <p>You use one API for both global and regional applications. Where you need to distinguish the scope, you specify a <code>Scope</code> parameter and set it to <code>CLOUDFRONT</code> or <code>REGIONAL</code>. </p> </li> <li> <p>You can define a web ACL or rule group with a single call, and update it with a single call. You define all rule specifications in JSON format, and pass them to your rule group or web ACL calls.</p> </li> <li> <p>The limits WAF places on the use of rules more closely reflects the cost of running each type of rule. Rule groups include capacity settings, so you know the maximum cost of a rule group when you use it.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: wafv2\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-07-29<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/wafv2/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10616, 10617], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/wafv2/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-31T20:14:16.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-07-29: DataRow\">2019-07-29</span>", children: [10591, 10615, 10618, 10619, 10620, 10621, 10622], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2019-07-29, x-release:v4, title:AWS WAFV2, description:<fullname>WAF</fullname> <note> <p>This is the latest version of the <b>WAF</b> API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.</p> <p>If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces. </p> <p>For information, including how to migrate your WAF resources to this version, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF Developer Guide</a>. </p> </note> <p>WAF is a web application firewall that lets you monitor the HT..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:wafv2, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/wafv2-2019-07-29.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/wafv2/ }\nupdated: 2020-03-31T20:14:16.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10623], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-07-29: { added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-29, x-release:v4, title:AWS WAFV2, description:<fullname>WAF</fullname> <note> <p>This is the latest version of the <b>WAF</b> API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.</p> <p>If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces. </p> <p>For information, including how to migrate your WAF resources to this version, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF Developer Guide</a>. </p> </note> ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/wafv2/ }, updated:2020-03-31T20:14:16.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/wafv2/2019-07-29/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-07-29: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:wafv2: DataRow\">amazonaws.com:wafv2</span>", children: [10589, 10590, 10624], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2019-07-29\nversions: { 2019-07-29:{ added:2020-02-28T16:47:57.000Z, info:{ version:2019-07-29, x-release:v4, title:AWS WAFV2, description:<fullname>WAF</fullname> <note> <p>This is the latest version of the <b>WAF</b> API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.</p> <p>If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces. </p> <p>For information, including how to migrate your WAF resources to this version, see the <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html"... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-03-31"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-15T15:07:17.488Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-03-31"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Well-Architected Tool"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>AWS Well-Architected Tool</fullname> <p>This is the <i>AWS Well-Architected Tool API Reference</i>. The AWS Well-Architected Tool API provides programmatic access to the <a href="http://aws.amazon.com/well-architected-tool">AWS Well-Architected Tool</a> in the <a href="https://console.aws.amazon.com/wellarchitected">AWS Management Console</a>. For information about the AWS Well-Architected Tool, see the <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">AWS Well-Architected Tool User Guide</a>.</p>\"><fullname>AWS Well-Architected Tool</<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10633, 10634], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10637, 10638, 10639, 10640], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10642, 10643], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["wellarchitected"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["wellarchitected"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410471, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10649], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10629, 10630, 10631, 10632, 10635, 10636, 10641, 10644, 10645, 10646, 10647, 10648, 10650, 10651, 10652], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-03-31\nx-release: v4\ntitle: AWS Well-Architected Tool\ndescription: <fullname>AWS Well-Architected Tool</fullname> <p>This is the <i>AWS Well-Architected Tool API Reference</i>. The AWS Well-Architected Tool API provides programmatic access to the <a href="http://aws.amazon.com/well-architected-tool">AWS Well-Architected Tool</a> in the <a href="https://console.aws.amazon.com/wellarchitected">AWS Management Console</a>. For information about the AWS Well-Architected Tool, see the <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">AWS Well-Architected Tool User Guide</a>.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: wellarchitected\nx-aws-signingName: wellarchitected\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-03-31<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/wellarchitected/\">https://docs.aws.amazon.com/wellarchi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10654, 10655], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/wellarchitected/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-03-31: DataRow\">2020-03-31</span>", children: [10628, 10653, 10656, 10657, 10658, 10659], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\ninfo: { version:2020-03-31, x-release:v4, title:AWS Well-Architected Tool, description:<fullname>AWS Well-Architected Tool</fullname> <p>This is the <i>AWS Well-Architected Tool API Reference</i>. The AWS Well-Architected Tool API provides programmatic access to the <a href="http://aws.amazon.com/well-architected-tool">AWS Well-Architected Tool</a> in the <a href="https://console.aws.amazon.com/wellarchitected">AWS Management Console</a>. For information about the AWS Well-Architected Tool, see the <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">AWS Well-Architected Tool User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:wellarchitected, x-aws-signingName:wellarchitected, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/wellarchitected-2020-03-31.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/wellarchitected/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10660], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-03-31: { added:2021-01-15T15:07:17.488Z, info:{ version:2020-03-31, x-release:v4, title:AWS Well-Architected Tool, description:<fullname>AWS Well-Architected Tool</fullname> <p>This is the <i>AWS Well-Architected Tool API Reference</i>. The AWS Well-Architected Tool API provides programmatic access to the <a href="http://aws.amazon.com/well-architected-tool">AWS Well-Architected Tool</a> in the <a href="https://console.aws.amazon.com/wellarchitected">AWS Management Console</a>. For information about the AWS Well-Architected Tool, see the <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">AWS Well-Architected Tool User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/li..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/wellarchitected/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/wellarchitected/2020-03-31/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-03-31: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:wellarchitected: DataRow\">amazonaws.com:wellarchitected</span>", children: [10626, 10627, 10661], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-15T15:07:17.488Z\npreferred: 2020-03-31\nversions: { 2020-03-31:{ added:2021-01-15T15:07:17.488Z, info:{ version:2020-03-31, x-release:v4, title:AWS Well-Architected Tool, description:<fullname>AWS Well-Architected Tool</fullname> <p>This is the <i>AWS Well-Architected Tool API Reference</i>. The AWS Well-Architected Tool API provides programmatic access to the <a href="http://aws.amazon.com/well-architected-tool">AWS Well-Architected Tool</a> in the <a href="https://console.aws.amazon.com/wellarchitected">AWS Management Console</a>. For information about the AWS Well-Architected Tool, see the <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/intro.html">AWS Well-Architected Tool User Guide</a>.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-15T15:07:17.488Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-05-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon WorkDocs"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>The WorkDocs API is designed for the following use cases:</p> <ul> <li> <p>File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premises file system or service. Users can insert files into a user directory structure, as well as allow for basic metadata changes, such as modifications to the permissions of files.</p> </li> <li> <p>Security: Support security applications are supported for users who have additional security needs, such as antivirus or data loss prevention. The API actions, along with AWS CloudTrail, allow these applications to detect when changes occur in Amazon WorkDocs. Then, the application can take the necessary actions and replace the target file. If the target file violates the policy, the application can also choose to email the user.</p> </li> <li> <p>eDiscovery/Analytics: General administrative applications are supported, such as eDiscovery and analytics. These applications can choose to mimic or record the actions in an Amazon WorkDocs site, along with AWS CloudTrail, to replicate data for eDiscovery, backup, or analytical applications.</p> </li> </ul> <p>All Amazon WorkDocs API actions are Amazon authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of IAM users and roles to help facilitate access, trust, and permission policies. By creating a role and allowing an IAM user to access the Amazon WorkDocs site, the IAM user gains full administrative visibility into the entire Amazon WorkDocs site (or as set in the IAM policy). This includes, but is not limited to, the ability to modify file permissions and upload any file to any user. This allows developers to perform the three use cases above, as well as give users the ability to grant access on a selective basis using the IAM model.</p>\"><p>The WorkDocs API is designed for t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10670, 10671], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10674, 10675, 10676, 10677], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10679, 10680], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["workdocs"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410472, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10685], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10666, 10667, 10668, 10669, 10672, 10673, 10678, 10681, 10682, 10683, 10684, 10686, 10687, 10688], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-05-01\nx-release: v4\ntitle: Amazon WorkDocs\ndescription: <p>The WorkDocs API is designed for the following use cases:</p> <ul> <li> <p>File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premises file system or service. Users can insert files into a user directory structure, as well as allow for basic metadata changes, such as modifications to the permissions of files.</p> </li> <li> <p>Security: Support security applications are supported for users who have additional security needs, such as antivirus or data loss prevention. The API actions, along with AWS CloudTrail, allow these applications to detect when changes occur in Amazon WorkDocs. Then, the application can take the necessary actions and replace the target file. If the target file violates the policy, the application can also choose to email the user.</p> </li> <li> <p>eDiscovery/Analytics: General administrative applications are supported, such as eDiscovery and analytics. These applications can choose to mimic or record the actions in an Amazon WorkDocs site, along with AWS CloudTrail, to replicate data for eDiscovery, backup, or analytical applications.</p> </li> </ul> <p>All Amazon WorkDocs API actions are Amazon authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of IAM users and roles to help facilitate access, trust, and permission policies. By creating a role and allowing an IAM user to access the Amazon WorkDocs site, the IAM user gains full administrative visibility into the entire Amazon WorkDocs site (or as set in the IAM policy). This includes, but is not limited to, the ability to modify file permissions and upload any file to any user. This allows developers to perform the three use cases above, as well as give users the ability to grant access on a selective basis using the IAM model.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: workdocs\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-05-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/workdocs/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10690, 10691], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/workdocs/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-05-01: DataRow\">2016-05-01</span>", children: [10665, 10689, 10692, 10693, 10694, 10695, 10696], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-05-01, x-release:v4, title:Amazon WorkDocs, description:<p>The WorkDocs API is designed for the following use cases:</p> <ul> <li> <p>File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premises file system or service. Users can insert files into a user directory structure, as well as allow for basic metadata changes, such as modifications to the permissions of files.</p> </li> <li> <p>Security: Support security applications are supported for users who have additional security needs, such as antivirus or data loss prevention. The API actions, along with AWS CloudTrail, allow these applications to detect when changes occur in Amazon WorkDocs. Then, the application can take the necessary actions and replace the target file. If the target file violates the policy, the application can also choose to email the user.</p> </li> <li> <p>eDiscovery/Analytics: General administrative applications are supported, such as eDiscovery and analytics. These applications can choose ..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workdocs, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workdocs-2016-05-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workdocs/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10697], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-05-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-05-01, x-release:v4, title:Amazon WorkDocs, description:<p>The WorkDocs API is designed for the following use cases:</p> <ul> <li> <p>File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premises file system or service. Users can insert files into a user directory structure, as well as allow for basic metadata changes, such as modifications to the permissions of files.</p> </li> <li> <p>Security: Support security applications are supported for users who have additional security needs, such as antivirus or data loss prevention. The API actions, along with AWS CloudTrail, allow these applications to detect when changes occur in Amazon WorkDocs. Then, the application can take the necessary actions and replace the target file. If the target file violates the policy, the application can also choose to email the user.</p> </li> <li> <p>eDiscovery/Analytics: General administrative applications are supp..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workdocs/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/workdocs/2016-05-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:workdocs: DataRow\">amazonaws.com:workdocs</span>", children: [10663, 10664, 10698], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-05-01\nversions: { 2016-05-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-05-01, x-release:v4, title:Amazon WorkDocs, description:<p>The WorkDocs API is designed for the following use cases:</p> <ul> <li> <p>File Migration: File migration applications are supported for users who want to migrate their files from an on-premises or off-premises file system or service. Users can insert files into a user directory structure, as well as allow for basic metadata changes, such as modifications to the permissions of files.</p> </li> <li> <p>Security: Support security applications are supported for users who have additional security needs, such as antivirus or data loss prevention. The API actions, along with AWS CloudTrail, allow these applications to detect when changes occur in Amazon WorkDocs. Then, the application can take the necessary actions and replace the target file. If the target file violates the policy, the application can also choose to email the user.</p> </li> <li> <p>eDiscovery/Analytics: Gener... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-09-25"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-09-25"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon WorkLink"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon WorkLink is a cloud-based service that provides secure access to internal websites and web apps from iOS and Android phones. In a single step, your users, such as employees, can access internal websites as efficiently as they access any other public website. They enter a URL in their web browser, or choose a link to an internal website in an email. Amazon WorkLink authenticates the user's access and securely renders authorized internal web content in a secure rendering service in the AWS cloud. Amazon WorkLink doesn't download or store any internal web content on mobile devices.\">Amazon WorkLink is a cloud-based serv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10707, 10708], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10711, 10712, 10713, 10714], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10716, 10717], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["worklink"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["worklink"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410473, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10723], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10703, 10704, 10705, 10706, 10709, 10710, 10715, 10718, 10719, 10720, 10721, 10722, 10724, 10725, 10726], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2018-09-25\nx-release: v4\ntitle: Amazon WorkLink\ndescription: Amazon WorkLink is a cloud-based service that provides secure access to internal websites and web apps from iOS and Android phones. In a single step, your users, such as employees, can access internal websites as efficiently as they access any other public website. They enter a URL in their web browser, or choose a link to an internal website in an email. Amazon WorkLink authenticates the user's access and securely renders authorized internal web content in a secure rendering service in the AWS cloud. Amazon WorkLink doesn't download or store any internal web content on mobile devices.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: worklink\nx-aws-signingName: worklink\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2018-09-25<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/worklink/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10728, 10729], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/worklink/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2018-09-25: DataRow\">2018-09-25</span>", children: [10702, 10727, 10730, 10731, 10732, 10733, 10734], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2018-09-25, x-release:v4, title:Amazon WorkLink, description:Amazon WorkLink is a cloud-based service that provides secure access to internal websites and web apps from iOS and Android phones. In a single step, your users, such as employees, can access internal websites as efficiently as they access any other public website. They enter a URL in their web browser, or choose a link to an internal website in an email. Amazon WorkLink authenticates the user's access and securely renders authorized internal web content in a secure rendering service in the AWS cloud. Amazon WorkLink doesn't download or store any internal web content on mobile devices., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:worklink, x-aws-signingName:worklink, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/worklink-2018-09-25.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/worklink/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10735], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-09-25: { added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-25, x-release:v4, title:Amazon WorkLink, description:Amazon WorkLink is a cloud-based service that provides secure access to internal websites and web apps from iOS and Android phones. In a single step, your users, such as employees, can access internal websites as efficiently as they access any other public website. They enter a URL in their web browser, or choose a link to an internal website in an email. Amazon WorkLink authenticates the user's access and securely renders authorized internal web content in a secure rendering service in the AWS cloud. Amazon WorkLink doesn't download or store any internal web content on mobile devices., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/worklink/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/worklink/2018-09-25/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-09-25: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:worklink: DataRow\">amazonaws.com:worklink</span>", children: [10700, 10701, 10736], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2018-09-25\nversions: { 2018-09-25:{ added:2020-02-28T16:47:57.000Z, info:{ version:2018-09-25, x-release:v4, title:Amazon WorkLink, description:Amazon WorkLink is a cloud-based service that provides secure access to internal websites and web apps from iOS and Android phones. In a single step, your users, such as employees, can access internal websites as efficiently as they access any other public website. They enter a URL in their web browser, or choose a link to an internal website in an email. Amazon WorkLink authenticates the user's access and securely renders authorized internal web content in a secure rendering service in the AWS cloud. Amazon WorkLink doesn't download or store any internal web content on mobile devices., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:Pe... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon WorkMail"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Amazon WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outlook, your browser, or other native iOS and Android email applications. You can integrate WorkMail with your existing corporate directory and control both the keys that encrypt your data and the location in which your data is stored.</p> <p>The WorkMail API is designed for the following scenarios:</p> <ul> <li> <p>Listing and describing organizations</p> </li> </ul> <ul> <li> <p>Managing users</p> </li> </ul> <ul> <li> <p>Managing groups</p> </li> </ul> <ul> <li> <p>Managing resources</p> </li> </ul> <p>All WorkMail API operations are Amazon-authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of AWS Identity and Access Management users and roles to help facilitate access, trust, and permission policies. By creating a role and allowing an IAM user to access the WorkMail site, the IAM user gains full administrative visibility into the entire WorkMail organization (or as set in the IAM policy). This includes, but is not limited to, the ability to create, update, and delete users, groups, and resources. This allows developers to perform the scenarios listed above, as well as give users the ability to grant access on a selective basis using the IAM model.</p>\"><p>Amazon WorkMail is a secure, manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10745, 10746], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10749, 10750, 10751, 10752], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10754, 10755], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["workmail"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410474, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10760], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10741, 10742, 10743, 10744, 10747, 10748, 10753, 10756, 10757, 10758, 10759, 10761, 10762, 10763], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2017-10-01\nx-release: v4\ntitle: Amazon WorkMail\ndescription: <p>Amazon WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outlook, your browser, or other native iOS and Android email applications. You can integrate WorkMail with your existing corporate directory and control both the keys that encrypt your data and the location in which your data is stored.</p> <p>The WorkMail API is designed for the following scenarios:</p> <ul> <li> <p>Listing and describing organizations</p> </li> </ul> <ul> <li> <p>Managing users</p> </li> </ul> <ul> <li> <p>Managing groups</p> </li> </ul> <ul> <li> <p>Managing resources</p> </li> </ul> <p>All WorkMail API operations are Amazon-authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of AWS Identity and Access Management users and roles to help facilitate access, trust, and permission policies. By creating a role and allowing an IAM user to access the WorkMail site, the IAM user gains full administrative visibility into the entire WorkMail organization (or as set in the IAM policy). This includes, but is not limited to, the ability to create, update, and delete users, groups, and resources. This allows developers to perform the scenarios listed above, as well as give users the ability to grant access on a selective basis using the IAM model.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: workmail\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2017-10-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/workmail/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10765, 10766], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/workmail/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-05-12T18:33:47.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2017-10-01: DataRow\">2017-10-01</span>", children: [10740, 10764, 10767, 10768, 10769, 10770, 10771], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2017-10-01, x-release:v4, title:Amazon WorkMail, description:<p>Amazon WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outlook, your browser, or other native iOS and Android email applications. You can integrate WorkMail with your existing corporate directory and control both the keys that encrypt your data and the location in which your data is stored.</p> <p>The WorkMail API is designed for the following scenarios:</p> <ul> <li> <p>Listing and describing organizations</p> </li> </ul> <ul> <li> <p>Managing users</p> </li> </ul> <ul> <li> <p>Managing groups</p> </li> </ul> <ul> <li> <p>Managing resources</p> </li> </ul> <p>All WorkMail API operations are Amazon-authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of AWS Identity and Access Management users and roles to help facilitate access, trust, and permission policies. By cre..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workmail, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workmail-2017-10-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workmail/ }\nupdated: 2020-05-12T18:33:47.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10772], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-01: { added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-01, x-release:v4, title:Amazon WorkMail, description:<p>Amazon WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outlook, your browser, or other native iOS and Android email applications. You can integrate WorkMail with your existing corporate directory and control both the keys that encrypt your data and the location in which your data is stored.</p> <p>The WorkMail API is designed for the following scenarios:</p> <ul> <li> <p>Listing and describing organizations</p> </li> </ul> <ul> <li> <p>Managing users</p> </li> </ul> <ul> <li> <p>Managing groups</p> </li> </ul> <ul> <li> <p>Managing resources</p> </li> </ul> <p>All WorkMail API operations are Amazon-authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of AWS Identity and Access Management users and ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workmail/ }, updated:2020-05-12T18:33:47.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/workmail/2017-10-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:workmail: DataRow\">amazonaws.com:workmail</span>", children: [10738, 10739, 10773], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2017-10-01\nversions: { 2017-10-01:{ added:2020-02-28T16:47:57.000Z, info:{ version:2017-10-01, x-release:v4, title:Amazon WorkMail, description:<p>Amazon WorkMail is a secure, managed business email and calendaring service with support for existing desktop and mobile email clients. You can access your email, contacts, and calendars using Microsoft Outlook, your browser, or other native iOS and Android email applications. You can integrate WorkMail with your existing corporate directory and control both the keys that encrypt your data and the location in which your data is stored.</p> <p>The WorkMail API is designed for the following scenarios:</p> <ul> <li> <p>Listing and describing organizations</p> </li> </ul> <ul> <li> <p>Managing users</p> </li> </ul> <ul> <li> <p>Managing groups</p> </li> </ul> <ul> <li> <p>Managing resources</p> </li> </ul> <p>All WorkMail API operations are Amazon-authenticated and certificate-signed. They not only require the use of the AWS SDK, but also allow for the exclusive use of AWS Id... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-12-18T23:56:32.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-12-18T23:56:32.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-05-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon WorkMail Message Flow"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization.\">The WorkMail Message Flow API provide<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10782, 10783], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10786, 10787, 10788, 10789], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10791, 10792], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["workmailmessageflow"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410475, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10797], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10778, 10779, 10780, 10781, 10784, 10785, 10790, 10793, 10794, 10795, 10796, 10798, 10799, 10800], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-05-01\nx-release: v4\ntitle: Amazon WorkMail Message Flow\ndescription: The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: workmailmessageflow\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-05-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/workmailmessageflow/\">https://docs.aws.amazon.com/workmailm<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10802, 10803], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/workmailmessageflow/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-05-01: DataRow\">2019-05-01</span>", children: [10777, 10801, 10804, 10805, 10806, 10807, 10808], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-12-18T23:56:32.000Z\ninfo: { version:2019-05-01, x-release:v4, title:Amazon WorkMail Message Flow, description:The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workmailmessageflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workmailmessageflow-2019-05-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workmailmessageflow/ }\nupdated: 2020-02-28T16:47:57.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-12-18T23:56:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10809], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-05-01: { added:2018-12-18T23:56:32.000Z, info:{ version:2019-05-01, x-release:v4, title:Amazon WorkMail Message Flow, description:The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workmailmessageflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workmailmessageflow-2019-05-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workmailmessageflow/ }, updated:2020-02-28T16:47:57.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/workmailmessageflow/2019-05-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:workmailmessageflow: DataRow\">amazonaws.com:workmailmessageflow</span>", children: [10775, 10776, 10810], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-12-18T23:56:32.000Z\npreferred: 2019-05-01\nversions: { 2019-05-01:{ added:2018-12-18T23:56:32.000Z, info:{ version:2019-05-01, x-release:v4, title:Amazon WorkMail Message Flow, description:The WorkMail Message Flow API provides access to email messages as they are being sent and received by a WorkMail organization., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workmailmessageflow, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workmailmessageflow-2019-05-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-12-18T23:56:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-04-08"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-04-08"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon WorkSpaces"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon WorkSpaces Service</fullname> <p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows and Amazon Linux desktops for your users.</p>\"><fullname>Amazon WorkSpaces Service</<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10819, 10820], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10823, 10824, 10825, 10826], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10828, 10829], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["workspaces"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410476, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10834], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10815, 10816, 10817, 10818, 10821, 10822, 10827, 10830, 10831, 10832, 10833, 10835, 10836, 10837], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2015-04-08\nx-release: v4\ntitle: Amazon WorkSpaces\ndescription: <fullname>Amazon WorkSpaces Service</fullname> <p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows and Amazon Linux desktops for your users.</p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: workspaces\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2015-04-08<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/workspaces/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10839, 10840], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/workspaces/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-11T18:02:18.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2015-04-08: DataRow\">2015-04-08</span>", children: [10814, 10838, 10841, 10842, 10843, 10844, 10845], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2015-04-08, x-release:v4, title:Amazon WorkSpaces, description:<fullname>Amazon WorkSpaces Service</fullname> <p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows and Amazon Linux desktops for your users.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workspaces, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workspaces-2015-04-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workspaces/ }\nupdated: 2020-03-11T18:02:18.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10846], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-04-08: { added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-08, x-release:v4, title:Amazon WorkSpaces, description:<fullname>Amazon WorkSpaces Service</fullname> <p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows and Amazon Linux desktops for your users.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workspaces, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workspaces-2015-04-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon...., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/workspaces/ }, updated:2020-03-11T18:02:18.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/workspaces/2015-04-08/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-04-08: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:workspaces: DataRow\">amazonaws.com:workspaces</span>", children: [10812, 10813, 10847], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2015-04-08\nversions: { 2015-04-08:{ added:2020-02-28T16:47:57.000Z, info:{ version:2015-04-08, x-release:v4, title:Amazon WorkSpaces, description:<fullname>Amazon WorkSpaces Service</fullname> <p>Amazon WorkSpaces enables you to provision virtual, cloud-based Microsoft Windows and Amazon Linux desktops for your users.</p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:workspaces, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/workspaces-2015-04-08.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegist... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2016-04-12"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-02-28T16:47:57.000Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2016-04-12"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS X-Ray"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces.\">Amazon Web Services X-Ray provides AP<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10856, 10857], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10860, 10861, 10862, 10863], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10865, 10866], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["xray"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410477, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10871], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10852, 10853, 10854, 10855, 10858, 10859, 10864, 10867, 10868, 10869, 10870, 10872, 10873, 10874], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2016-04-12\nx-release: v4\ntitle: AWS X-Ray\ndescription: Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: xray\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2016-04-12<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/xray/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10876, 10877], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/xray/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-25T18:54:51.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2016-04-12: DataRow\">2016-04-12</span>", children: [10851, 10875, 10878, 10879, 10880, 10881, 10882], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\ninfo: { version:2016-04-12, x-release:v4, title:AWS X-Ray, description:Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:xray, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/xray-2016-04-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/xray/ }\nupdated: 2020-03-25T18:54:51.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10883], rightAlign: false, values: ["<span class=\"formatted\" title=\"2016-04-12: { added:2020-02-28T16:47:57.000Z, info:{ version:2016-04-12, x-release:v4, title:AWS X-Ray, description:Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:xray, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/xray-2016-04-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/xray/ }, updated:2020-03-25T18:54:51.000Z, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/xray/2016-04-12/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2016-04-12: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:xray: DataRow\">amazonaws.com:xray</span>", children: [10849, 10850, 10884], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-02-28T16:47:57.000Z\npreferred: 2016-04-12\nversions: { 2016-04-12:{ added:2020-02-28T16:47:57.000Z, info:{ version:2016-04-12, x-release:v4, title:AWS X-Ray, description:Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps and other data created by processing those traces., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:xray, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/xray-2016-04-12.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/dev... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-02-28T16:47:57.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-04-20"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-04-20"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Chime SDK Identity"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Identity.html">Amazon Chime SDK identity</a>.\">The Amazon Chime SDK Identity APIs in<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10893, 10894], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10897, 10898, 10899, 10900], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10902, 10903], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["chime-sdk-identity"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["chime"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410478, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10909], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10889, 10890, 10891, 10892, 10895, 10896, 10901, 10904, 10905, 10906, 10907, 10908, 10910, 10911, 10912], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-04-20\nx-release: v4\ntitle: Amazon Chime SDK Identity\ndescription: The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Identity.html">Amazon Chime SDK identity</a>.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: chime-sdk-identity\nx-aws-signingName: chime\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-04-20<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/identity-chime/\">https://docs.aws.amazon.com/identity-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10914, 10915], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/identity-chime/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-04-20: DataRow\">2021-04-20</span>", children: [10888, 10913, 10916, 10917, 10918, 10919], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-04-20, x-release:v4, title:Amazon Chime SDK Identity, description:The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Identity.html">Amazon Chime SDK identity</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-identity, x-aws-signingName:chime, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/chime-sdk-identity-2021-04-20.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/identity-chime/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10920], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-04-20: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-04-20, x-release:v4, title:Amazon Chime SDK Identity, description:The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Identity.html">Amazon Chime SDK identity</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-identity, x-aws-signingName:chime, x-origin:[1 x 4] { co..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/identity-chime/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-identity/2021-04-20/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-04-20: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:chime-sdk-identity: DataRow\">amazonaws.com:chime-sdk-identity</span>", children: [10886, 10887, 10921], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-04-20\nversions: { 2021-04-20:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-04-20, x-release:v4, title:Amazon Chime SDK Identity, description:The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Identity.html">Amazon Chime SDK identity</a>., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-identity, x-aws-s... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-05-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-05-15"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon Chime SDK Messaging"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Amazon Chime SDK Messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK Identity APIs. For more information about the messaging APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Messaging">Amazon Chime SDK messaging</a> \">The Amazon Chime SDK Messaging APIs i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10930, 10931], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10934, 10935, 10936, 10937], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10939, 10940], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["chime-sdk-messaging"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["chime"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410479, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10946], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10926, 10927, 10928, 10929, 10932, 10933, 10938, 10941, 10942, 10943, 10944, 10945, 10947, 10948, 10949], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-05-15\nx-release: v4\ntitle: Amazon Chime SDK Messaging\ndescription: The Amazon Chime SDK Messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK Identity APIs. For more information about the messaging APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Messaging">Amazon Chime SDK messaging</a> \nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: chime-sdk-messaging\nx-aws-signingName: chime\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-05-15<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/messaging-chime/\">https://docs.aws.amazon.com/messaging<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10951, 10952], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/messaging-chime/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-05-15: DataRow\">2021-05-15</span>", children: [10925, 10950, 10953, 10954, 10955, 10956], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-05-15, x-release:v4, title:Amazon Chime SDK Messaging, description:The Amazon Chime SDK Messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK Identity APIs. For more information about the messaging APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Messaging">Amazon Chime SDK messaging</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-messaging, x-aws-signingName:chime, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/chime-sdk-messaging-2021-05-15.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/messaging-chime/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10957], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-05-15: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-05-15, x-release:v4, title:Amazon Chime SDK Messaging, description:The Amazon Chime SDK Messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK Identity APIs. For more information about the messaging APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Messaging">Amazon Chime SDK messaging</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-messaging, x-aws-signingName:chime, x-origin:[1 x 4] { contentTyp..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/messaging-chime/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/chime-sdk-messaging/2021-05-15/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-05-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:chime-sdk-messaging: DataRow\">amazonaws.com:chime-sdk-messaging</span>", children: [10923, 10924, 10958], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-05-15\nversions: { 2021-05-15:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-05-15, x-release:v4, title:Amazon Chime SDK Messaging, description:The Amazon Chime SDK Messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK Identity APIs. For more information about the messaging APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Messaging">Amazon Chime SDK messaging</a> , x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:chime-sdk-messaging, x-aws-signingNa... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-09-14"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-09-14"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Managed Streaming for Kafka Connect"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<p/>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [10967, 10968], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [10971, 10972, 10973, 10974], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [10976, 10977], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kafkaconnect"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["kafkaconnect"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410480, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [10983], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [10963, 10964, 10965, 10966, 10969, 10970, 10975, 10978, 10979, 10980, 10981, 10982, 10984, 10985, 10986], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-09-14\nx-release: v4\ntitle: Managed Streaming for Kafka Connect\ndescription: <p/>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: kafkaconnect\nx-aws-signingName: kafkaconnect\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-09-14<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/kafkaconnect/\">https://docs.aws.amazon.com/kafkaconn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [10988, 10989], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/kafkaconnect/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-09-14: DataRow\">2021-09-14</span>", children: [10962, 10987, 10990, 10991, 10992, 10993], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-09-14, x-release:v4, title:Managed Streaming for Kafka Connect, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafkaconnect, x-aws-signingName:kafkaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafkaconnect-2021-09-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kafkaconnect/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [10994], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-09-14: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-09-14, x-release:v4, title:Managed Streaming for Kafka Connect, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafkaconnect, x-aws-signingName:kafkaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafkaconnect-2021-09-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }, externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/kafkaconnect/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/kafkaconnect/2021-09-14/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-09-14: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:kafkaconnect: DataRow\">amazonaws.com:kafkaconnect</span>", children: [10960, 10961, 10995], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-09-14\nversions: { 2021-09-14:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-09-14, x-release:v4, title:Managed Streaming for Kafka Connect, description:<p/>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:kafkaconnect, x-aws-signingName:kafkaconnect, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/kafkaconnect-2021-09-14.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon MemoryDB"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"MemoryDB for Redis is a fully managed, Redis-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. MemoryDB stores the entire database in-memory, enabling low latency and high throughput data access. It is compatible with Redis, a popular open source data store, enabling you to leverage Redis’ flexible and friendly data structures, APIs, and commands.\">MemoryDB for Redis is a fully managed<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11004, 11005], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11008, 11009, 11010, 11011], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11013, 11014], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["memorydb"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["memorydb"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410481, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11020], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11000, 11001, 11002, 11003, 11006, 11007, 11012, 11015, 11016, 11017, 11018, 11019, 11021, 11022, 11023], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-01-01\nx-release: v4\ntitle: Amazon MemoryDB\ndescription: MemoryDB for Redis is a fully managed, Redis-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. MemoryDB stores the entire database in-memory, enabling low latency and high throughput data access. It is compatible with Redis, a popular open source data store, enabling you to leverage Redis’ flexible and friendly data structures, APIs, and commands.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: memorydb\nx-aws-signingName: memorydb\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/memory-db/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11025, 11026], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/memory-db/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-01-01: DataRow\">2021-01-01</span>", children: [10999, 11024, 11027, 11028, 11029, 11030], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-01-01, x-release:v4, title:Amazon MemoryDB, description:MemoryDB for Redis is a fully managed, Redis-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. MemoryDB stores the entire database in-memory, enabling low latency and high throughput data access. It is compatible with Redis, a popular open source data store, enabling you to leverage Redis’ flexible and friendly data structures, APIs, and commands., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:memorydb, x-aws-signingName:memorydb, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/memorydb-2021-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/memory-db/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11031], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-01-01: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-01-01, x-release:v4, title:Amazon MemoryDB, description:MemoryDB for Redis is a fully managed, Redis-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. MemoryDB stores the entire database in-memory, enabling low latency and high throughput data access. It is compatible with Redis, a popular open source data store, enabling you to leverage Redis’ flexible and friendly data structures, APIs, and commands., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:memorydb, x-aws-signingName:memorydb, x-ori..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/memory-db/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/memorydb/2021-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:memorydb: DataRow\">amazonaws.com:memorydb</span>", children: [10997, 10998, 11032], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-01-01\nversions: { 2021-01-01:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-01-01, x-release:v4, title:Amazon MemoryDB, description:MemoryDB for Redis is a fully managed, Redis-compatible, in-memory database that delivers ultra-fast performance and Multi-AZ durability for modern applications built using microservices architectures. MemoryDB stores the entire database in-memory, enabling low latency and high throughput data access. It is compatible with Redis, a popular open source data store, enabling you to leverage Redis’ flexible and friendly data structures, APIs, and commands., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:memo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-01-01"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Amazon OpenSearch Service"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<fullname>Amazon OpenSearch Configuration Service</fullname> <p>Use the Amazon OpenSearch configuration API to create, configure, and manage Amazon OpenSearch Service domains.</p> <p>For sample code that uses the configuration API, see the <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-configuration-samples.html"> Amazon OpenSearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/request-signing.html"> sample code for sending signed HTTP requests to the OpenSearch APIs</a>. </p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#service-regions" target="_blank">Regions and Endpoints</a>. </p>\"><fullname>Amazon OpenSearch Configura<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11041, 11042], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11045, 11046, 11047, 11048], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11050, 11051], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["opensearch"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410482, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11056], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11037, 11038, 11039, 11040, 11043, 11044, 11049, 11052, 11053, 11054, 11055, 11057, 11058, 11059], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-01-01\nx-release: v4\ntitle: Amazon OpenSearch Service\ndescription: <fullname>Amazon OpenSearch Configuration Service</fullname> <p>Use the Amazon OpenSearch configuration API to create, configure, and manage Amazon OpenSearch Service domains.</p> <p>For sample code that uses the configuration API, see the <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-configuration-samples.html"> Amazon OpenSearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/request-signing.html"> sample code for sending signed HTTP requests to the OpenSearch APIs</a>. </p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#service-regions" target="_blank">Regions and Endpoints</a>. </p>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: opensearch\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-01-01<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://docs.aws.amazon.com/es/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11061, 11062], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/es/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-01-01: DataRow\">2021-01-01</span>", children: [11036, 11060, 11063, 11064, 11065, 11066], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-01-01, x-release:v4, title:Amazon OpenSearch Service, description:<fullname>Amazon OpenSearch Configuration Service</fullname> <p>Use the Amazon OpenSearch configuration API to create, configure, and manage Amazon OpenSearch Service domains.</p> <p>For sample code that uses the configuration API, see the <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-configuration-samples.html"> Amazon OpenSearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/request-signing.html"> sample code for sending signed HTTP requests to the OpenSearch APIs</a>. </p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#service-regions" target="_blank">Regions and Endpoints</a>. </p>, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:opensearch, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/opensearch-2021-01-01.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/es/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11067], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-01-01: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-01-01, x-release:v4, title:Amazon OpenSearch Service, description:<fullname>Amazon OpenSearch Configuration Service</fullname> <p>Use the Amazon OpenSearch configuration API to create, configure, and manage Amazon OpenSearch Service domains.</p> <p>For sample code that uses the configuration API, see the <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-configuration-samples.html"> Amazon OpenSearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/request-signing.html"> sample code for sending signed HTTP requests to the OpenSearch APIs</a>. </p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#service-regions" target="_blank">Regions..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/es/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/opensearch/2021-01-01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:opensearch: DataRow\">amazonaws.com:opensearch</span>", children: [11034, 11035, 11068], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-01-01\nversions: { 2021-01-01:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-01-01, x-release:v4, title:Amazon OpenSearch Service, description:<fullname>Amazon OpenSearch Configuration Service</fullname> <p>Use the Amazon OpenSearch configuration API to create, configure, and manage Amazon OpenSearch Service domains.</p> <p>For sample code that uses the configuration API, see the <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/opensearch-configuration-samples.html"> Amazon OpenSearch Service Developer Guide</a>. The guide also contains <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/request-signing.html"> sample code for sending signed HTTP requests to the OpenSearch APIs</a>. </p> <p>The endpoint for configuration service requests is region-specific: es.<i>region</i>.amazonaws.com. For example, es.us-east-1.amazonaws.com. For a current list of supported regions and endpoints, see <a href="http://docs.aws.amazon.com/general/latest/gr/rande.html#s... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Route53 Recovery Cluster"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<p>Welcome to the Amazon Route 53 Application Recovery Controller API Reference Guide for Recovery Control Data Plane .</p> <p>Recovery control in Route 53 Application Recovery Controller includes extremely reliable routing controls that enable you to recover applications by rerouting traffic, for example, across Availability Zones or AWS Regions. Routing controls are simple on/off switches hosted on a cluster. A cluster is a set of five redundant regional endpoints against which you can execute API calls to update or get the state of routing controls. You use routing controls to failover traffic to recover your application across Availability Zones or Regions.</p> <p>This API guide includes information about how to get and update routing control states in Route 53 Application Recovery Controller.</p> <p>For more information about Route 53 Application Recovery Controller, see the following:</p> <ul> <li> <p>You can create clusters, routing controls, and control panels by using the control plane API for Recovery Control. For more information, see <a href="https://docs.aws.amazon.com/recovery-cluster/latest/api/">Amazon Route 53 Application Recovery Controller Recovery Control API Reference</a>.</p> </li> <li> <p>Route 53 Application Recovery Controller also provides continuous readiness checks to ensure that your applications are scaled to handle failover traffic. For more information about the related API actions, see <a href="https://docs.aws.amazon.com/recovery-readiness/latest/api/">Amazon Route 53 Application Recovery Controller Recovery Readiness API Reference</a>.</p> </li> <li> <p>For more information about creating resilient applications and preparing for recovery readiness with Route 53 Application Recovery Controller, see the <a href="r53recovery/latest/dg/">Amazon Route 53 Application Recovery Controller Developer Guide</a>.</p> </li> </ul>\"><p>Welcome to the Amazon Route 53 App<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11077, 11078], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11081, 11082, 11083, 11084], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11086, 11087], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53-recovery-cluster"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["route53-recovery-cluster"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410483, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11093], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11073, 11074, 11075, 11076, 11079, 11080, 11085, 11088, 11089, 11090, 11091, 11092, 11094, 11095, 11096], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-02\nx-release: v4\ntitle: Route53 Recovery Cluster\ndescription: <p>Welcome to the Amazon Route 53 Application Recovery Controller API Reference Guide for Recovery Control Data Plane .</p> <p>Recovery control in Route 53 Application Recovery Controller includes extremely reliable routing controls that enable you to recover applications by rerouting traffic, for example, across Availability Zones or AWS Regions. Routing controls are simple on/off switches hosted on a cluster. A cluster is a set of five redundant regional endpoints against which you can execute API calls to update or get the state of routing controls. You use routing controls to failover traffic to recover your application across Availability Zones or Regions.</p> <p>This API guide includes information about how to get and update routing control states in Route 53 Application Recovery Controller.</p> <p>For more information about Route 53 Application Recovery Controller, see the following:</p> <ul> <li> <p>You can create clusters, routing controls, and control panels by using the control plane API for Recovery Control. For more information, see <a href="https://docs.aws.amazon.com/recovery-cluster/latest/api/">Amazon Route 53 Application Recovery Controller Recovery Control API Reference</a>.</p> </li> <li> <p>Route 53 Application Recovery Controller also provides continuous readiness checks to ensure that your applications are scaled to handle failover traffic. For more information about the related API actions, see <a href="https://docs.aws.amazon.com/recovery-readiness/latest/api/">Amazon Route 53 Application Recovery Controller Recovery Readiness API Reference</a>.</p> </li> <li> <p>For more information about creating resilient applications and preparing for recovery readiness with Route 53 Application Recovery Controller, see the <a href="r53recovery/latest/dg/">Amazon Route 53 Application Recovery Controller Developer Guide</a>.</p> </li> </ul>\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53-recovery-cluster\nx-aws-signingName: route53-recovery-cluster\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/route53-recovery-cluster/\">https://docs.aws.amazon.com/route53-r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11098, 11099], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53-recovery-cluster/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-02: DataRow\">2019-12-02</span>", children: [11072, 11097, 11100, 11101, 11102, 11103], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2019-12-02, x-release:v4, title:Route53 Recovery Cluster, description:<p>Welcome to the Amazon Route 53 Application Recovery Controller API Reference Guide for Recovery Control Data Plane .</p> <p>Recovery control in Route 53 Application Recovery Controller includes extremely reliable routing controls that enable you to recover applications by rerouting traffic, for example, across Availability Zones or AWS Regions. Routing controls are simple on/off switches hosted on a cluster. A cluster is a set of five redundant regional endpoints against which you can execute API calls to update or get the state of routing controls. You use routing controls to failover traffic to recover your application across Availability Zones or Regions.</p> <p>This API guide includes information about how to get and update routing control states in Route 53 Application Recovery Controller.</p> <p>For more information about Route 53 Application Recovery Controller, see the following:</p> <ul> <li> <p>You can create clusters, routing controls, and control panels by using the c..., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-cluster, x-aws-signingName:route53-recovery-cluster, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-cluster-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-cluster/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11104], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-02: { added:2023-01-13T00:45:18.798Z, info:{ version:2019-12-02, x-release:v4, title:Route53 Recovery Cluster, description:<p>Welcome to the Amazon Route 53 Application Recovery Controller API Reference Guide for Recovery Control Data Plane .</p> <p>Recovery control in Route 53 Application Recovery Controller includes extremely reliable routing controls that enable you to recover applications by rerouting traffic, for example, across Availability Zones or AWS Regions. Routing controls are simple on/off switches hosted on a cluster. A cluster is a set of five redundant regional endpoints against which you can execute API calls to update or get the state of routing controls. You use routing controls to failover traffic to recover your application across Availability Zones or Regions.</p> <p>This API guide includes information about how to get and update routing control states in Route 53 Application Recovery Controller.</p> <p>For more information about Route 53 Application Recovery Controller, see the following:</p> <ul> <li>..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-cluster/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-cluster/2019-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53-recovery-cluster: DataRow\">amazonaws.com:route53-recovery-cluster</span>", children: [11070, 11071, 11105], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2019-12-02\nversions: { 2019-12-02:{ added:2023-01-13T00:45:18.798Z, info:{ version:2019-12-02, x-release:v4, title:Route53 Recovery Cluster, description:<p>Welcome to the Amazon Route 53 Application Recovery Controller API Reference Guide for Recovery Control Data Plane .</p> <p>Recovery control in Route 53 Application Recovery Controller includes extremely reliable routing controls that enable you to recover applications by rerouting traffic, for example, across Availability Zones or AWS Regions. Routing controls are simple on/off switches hosted on a cluster. A cluster is a set of five redundant regional endpoints against which you can execute API calls to update or get the state of routing controls. You use routing controls to failover traffic to recover your application across Availability Zones or Regions.</p> <p>This API guide includes information about how to get and update routing control states in Route 53 Application Recovery Controller.</p> <p>For more information about Route 53 Application Recovery Contr... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-11-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-11-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Route53 Recovery Control Config"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller\">Recovery Control Configuration API Re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11114, 11115], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11118, 11119, 11120, 11121], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11123, 11124], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53-recovery-control-config"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["route53-recovery-control-config"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410484, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11130], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11110, 11111, 11112, 11113, 11116, 11117, 11122, 11125, 11126, 11127, 11128, 11129, 11131, 11132, 11133], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2020-11-02\nx-release: v4\ntitle: AWS Route53 Recovery Control Config\ndescription: Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53-recovery-control-config\nx-aws-signingName: route53-recovery-control-config\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2020-11-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/route53-recovery-control-config/\">https://docs.aws.amazon.com/route53-r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11135, 11136], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53-recovery-control-config/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2020-11-02: DataRow\">2020-11-02</span>", children: [11109, 11134, 11137, 11138, 11139, 11140], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2020-11-02, x-release:v4, title:AWS Route53 Recovery Control Config, description:Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-control-config, x-aws-signingName:route53-recovery-control-config, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-control-config-2020-11-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-control-config/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11141], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-11-02: { added:2023-01-13T00:45:18.798Z, info:{ version:2020-11-02, x-release:v4, title:AWS Route53 Recovery Control Config, description:Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-control-config, x-aws-signingName:route53-recovery-control-config, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-control-config-2020-11-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ ..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-control-config/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-control-config/2020-11-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-11-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53-recovery-control-config: DataRow\">amazonaws.com:route53-recovery-control-config</span>", children: [11107, 11108, 11142], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2020-11-02\nversions: { 2020-11-02:{ added:2023-01-13T00:45:18.798Z, info:{ version:2020-11-02, x-release:v4, title:AWS Route53 Recovery Control Config, description:Recovery Control Configuration API Reference for Amazon Route 53 Application Recovery Controller, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-control-config, x-aws-signingName:route53-recovery-control-config, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-control-config-2020-11-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-02"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Route53 Recovery Readiness"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AWS Route53 Recovery Readiness"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11151, 11152], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11155, 11156, 11157, 11158], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11160, 11161], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["route53-recovery-readiness"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["route53-recovery-readiness"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410485, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11167], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11147, 11148, 11149, 11150, 11153, 11154, 11159, 11162, 11163, 11164, 11165, 11166, 11168, 11169, 11170], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2019-12-02\nx-release: v4\ntitle: AWS Route53 Recovery Readiness\ndescription: AWS Route53 Recovery Readiness\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: route53-recovery-readiness\nx-aws-signingName: route53-recovery-readiness\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2019-12-02<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/route53-recovery-readiness/\">https://docs.aws.amazon.com/route53-r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11172, 11173], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/route53-recovery-readiness/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-12-02: DataRow\">2019-12-02</span>", children: [11146, 11171, 11174, 11175, 11176, 11177], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2019-12-02, x-release:v4, title:AWS Route53 Recovery Readiness, description:AWS Route53 Recovery Readiness, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-readiness, x-aws-signingName:route53-recovery-readiness, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-readiness-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-readiness/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11178], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-02: { added:2023-01-13T00:45:18.798Z, info:{ version:2019-12-02, x-release:v4, title:AWS Route53 Recovery Readiness, description:AWS Route53 Recovery Readiness, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-readiness, x-aws-signingName:route53-recovery-readiness, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-readiness-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct },..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/route53-recovery-readiness/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/route53-recovery-readiness/2019-12-02/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-02: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:route53-recovery-readiness: DataRow\">amazonaws.com:route53-recovery-readiness</span>", children: [11144, 11145, 11179], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2019-12-02\nversions: { 2019-12-02:{ added:2023-01-13T00:45:18.798Z, info:{ version:2019-12-02, x-release:v4, title:AWS Route53 Recovery Readiness, description:AWS Route53 Recovery Readiness, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:route53-recovery-readiness, x-aws-signingName:route53-recovery-readiness, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/route53-recovery-readiness-2019-12-02.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/develo... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021-08-04"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2023-01-13T00:45:18.798Z"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021-08-04"] },
{ name: "<span title=\"x-release: String\">x-release</span>", children: [], rightAlign: false, values: ["v4"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AWS Snow Device Management"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Amazon Web Services Snow Device Management documentation.\">Amazon Web Services Snow Device Manag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11188, 11189], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png\nbackgroundColor: #FFFFFF\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">b...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://aws.amazon.com/service-terms/"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Mike Ralphson"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://github.com/mermade/aws2openapi"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["PermittedSoc"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11192, 11193, 11194, 11195], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Mike Ralphson\nemail: mike.ralphson@gmail.com\nurl: https://github.com/mermade/aws2openapi\nx-twitter: PermittedSoc\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Mike Ralphson<span class=\"structural\">, </span><span class=\"structural\">email: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0 License"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.apache.org/licenses/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11197, 11198], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0 License\nurl: http://www.apache.org/licenses/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0 License<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amazonaws.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["snow-device-management"] },
{ name: "<span title=\"x-aws-signingName: String\">x-aws-signingName</span>", children: [], rightAlign: false, values: ["snow-device-management"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410486, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\">https://portal.aws.amazon.com/gp/aws/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-apiClientRegistration: DataRow\">x-apiClientRegistration</span>", children: [11204], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://portal.aws.amazon.co<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11184, 11185, 11186, 11187, 11190, 11191, 11196, 11199, 11200, 11201, 11202, 11203, 11205, 11206, 11207], rightAlign: false, values: ["<span class=\"formatted\" title=\"version: 2021-08-04\nx-release: v4\ntitle: AWS Snow Device Management\ndescription: Amazon Web Services Snow Device Management documentation.\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }\ntermsOfService: https://aws.amazon.com/service-terms/\ncontact: { name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }\nlicense: { name:Apache 2.0 License, url:http://www.apache.org/licenses/ }\nx-providerName: amazonaws.com\nx-serviceName: snow-device-management\nx-aws-signingName: snow-device-management\nx-origin: contentType url converter x-apisguru-driver\n 0 application/json https://raw.githubusercontent.com/aws... { url:https://github.com/mermade/aws2... external\n\nx-apiClientRegistration: { url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }\nx-apisguru-categories: [cloud]\nx-preferred: true\"><span class=\"structural\">{ </span><span class=\"structural\">version: </span>2021-08-04<span class=\"structural\">, </span><span class=\"structural\">x-relea...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Amazon Web Services documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://docs.aws.amazon.com/snow-device-management/\">https://docs.aws.amazon.com/snow-devi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11209, 11210], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Amazon Web Services documentation\nurl: https://docs.aws.amazon.com/snow-device-management/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Amazon Web Ser<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.json\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.yaml\">https://api.apis.guru/v2/specs/amazon<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2021-08-04: DataRow\">2021-08-04</span>", children: [11183, 11208, 11211, 11212, 11213, 11214], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\ninfo: { version:2021-08-04, x-release:v4, title:AWS Snow Device Management, description:Amazon Web Services Snow Device Management documentation., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:snow-device-management, x-aws-signingName:snow-device-management, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/snow-device-management-2021-08-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct }, x-apisguru-categories:[cloud], x-preferred:true }\nexternalDocs: { description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/snow-device-management/ }\nswaggerUrl: https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11215], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021-08-04: { added:2023-01-13T00:45:18.798Z, info:{ version:2021-08-04, x-release:v4, title:AWS Snow Device Management, description:Amazon Web Services Snow Device Management documentation., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:snow-device-management, x-aws-signingName:snow-device-management, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/snow-device-management-2021-08-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?..., externalDocs:{ description:Amazon Web Services documentation, url:https://docs.aws.amazon.com/snow-device-management/ }, swaggerUrl:https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amazonaws.com/snow-device-management/2021-08-04/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021-08-04: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amazonaws.com:snow-device-management: DataRow\">amazonaws.com:snow-device-management</span>", children: [11181, 11182, 11216], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2023-01-13T00:45:18.798Z\npreferred: 2021-08-04\nversions: { 2021-08-04:{ added:2023-01-13T00:45:18.798Z, info:{ version:2021-08-04, x-release:v4, title:AWS Snow Device Management, description:Amazon Web Services Snow Device Management documentation., x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png, backgroundColor:#FFFFFF }, termsOfService:https://aws.amazon.com/service-terms/, contact:{ name:Mike Ralphson, email:mike.ralphson@gmail.com, url:https://github.com/mermade/aws2openapi, x-twitter:PermittedSoc }, license:{ name:Apache 2.0 License, url:http://www.apache.org/licenses/ }, x-providerName:amazonaws.com, x-serviceName:snow-device-management, x-aws-signingName:snow-device-management, x-origin:[1 x 4] { contentType:application/json, url:https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/snow-device-management-2021-08-04.normal.json, converter:{ url:https://github.com/mermade/aws2openapi, version:1.0.0 }, x-apisguru-driver:external }, x-apiClientRegistration:{ url:https://portal.aws.amazon.com/gp... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2023-01-13T00:45:18.798Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-08-01T15:56:31.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-08-01T15:56:31.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["amentumspace"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11221], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: amentumspace\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amentumspace<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Instantly access empirical models of atmospheric density and composition that are recommended by the Committee on Space Research (COSPAR) for satellite drag calculations. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\">Instantly access empirical models of <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Atmosphere API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\"><span class=\"structural\">[</span>location<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"altText: String\">altText</span>", children: [], rightAlign: false, values: ["Amentum Aerospace"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11227, 11228, 11229], rightAlign: false, values: ["<span class=\"formatted\" title=\"altText: Amentum Aerospace\nbackgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">altText: </span>Amentum Aerospace<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410487, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amentum.space"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["atmosphere"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11222, 11223, 11224, 11225, 11226, 11230, 11231, 11232, 11233], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:amentumspace }\ndescription: Instantly access empirical models of atmospheric density and composition that are recommended by the Committee on Space Research (COSPAR) for satellite drag calculations. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\ntitle: Atmosphere API\nversion: 1.1.1\nx-apisguru-categories: [location]\nx-logo: { altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://atmosphere.amentum.space/open... 3.0\n\nx-providerName: amentum.space\nx-serviceName: atmosphere\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amen<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-05T15:07:17.927Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.json\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.yaml\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.1.1: DataRow\">1.1.1</span>", children: [11220, 11234, 11235, 11236, 11237, 11238], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-08-01T15:56:31.000Z\ninfo: { contact:{ x-twitter:amentumspace }, description:Instantly access empirical models of atmospheric density and composition that are recommended by the Committee on Space Research (COSPAR) for satellite drag calculations. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n, title:Atmosphere API, version:1.1.1, x-apisguru-categories:[location], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://atmosphere.amentum.space/openapi.json, version:3.0 }, x-providerName:amentum.space, x-serviceName:atmosphere }\nupdated: 2021-07-05T15:07:17.927Z\nswaggerUrl: https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-08-01T15:56:31.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11239], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1.1: { added:2019-08-01T15:56:31.000Z, info:{ contact:{ x-twitter:amentumspace }, description:Instantly access empirical models of atmospheric density and composition that are recommended by the Committee on Space Research (COSPAR) for satellite drag calculations. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n, title:Atmosphere API, version:1.1.1, x-apisguru-categories:[location], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, ur..., updated:2021-07-05T15:07:17.927Z, swaggerUrl:https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amentum.space/atmosphere/1.1.1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-08-01<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amentum.space:atmosphere: DataRow\">amentum.space:atmosphere</span>", children: [11218, 11219, 11240], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-08-01T15:56:31.000Z\npreferred: 1.1.1\nversions: { 1.1.1:{ added:2019-08-01T15:56:31.000Z, info:{ contact:{ x-twitter:amentumspace }, description:Instantly access empirical models of atmospheric density and composition that are recommended by the Committee on Space Research (COSPAR) for satellite drag calculations. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n, title:Atmosphere API, version:1.1.1, x-apisguru-categories:[location], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-08-01T15:56:31.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:57:07.303Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.5.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:57:07.303Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["amentumspace"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11245], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: amentumspace\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amentumspace<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation collides with gases in the atmosphere, leading to a complex shower of high energy radiation, the intensity and composition of which varies spatially and temporally. Excessive exposure to radiation can damage DNA and lead to long-term health effects such as an increased risk of cancer. <br><br> Resulting radiation levels at commercial aircraft altitudes are greater than at sea level due. Aircrew are classified as radiation workers in some countries; however, planning to limit their exposure, and monitoring, is generally lacking. Both real-time measurements and predictive models of radiation in the atmosphere are important to mitigate the radiation risk crew. <br><br>\nWe host a RESTful API to models of cosmic ray induced ionising radiation in the atmosphere. The PARMA or CARI7 endpoints can be used to calculate Effective Dose or Ambient Dose Equivalent at a point. \nThe Route Dose API calculates the same quantities along a great circle route between two airports using CARI7. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\">Our atmosphere protects us from a hos<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Aviation Radiation API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.5.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\nopen_data\"><span class=\"structural\">[</span>location<span class=\"structural\">, </span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"altText: String\">altText</span>", children: [], rightAlign: false, values: ["Amentum Aerospace"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11251, 11252, 11253], rightAlign: false, values: ["<span class=\"formatted\" title=\"altText: Amentum Aerospace\nbackgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">altText: </span>Amentum Aerospace<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410488, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amentum.space"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aviation_radiation"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11246, 11247, 11248, 11249, 11250, 11254, 11255, 11256, 11257], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:amentumspace }\ndescription: Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation collides with gases in the atmosphere, leading to a complex shower of high energy radiation, the intensity and composition of which varies spatially and temporally. Excessive exposure to radiation can damage DNA and lead to long-term health effects such as an increased risk of cancer. <br><br> Resulting radiation levels at commercial aircraft altitudes are greater than at sea level due. Aircrew are classified as radiation workers in some countries; however, planning to limit their exposure, and monitoring, is generally lacking. Both real-time measurements and predictive models of radiation in the atmosphere are important to mitigate the radiation risk crew. <br><br>\nWe host a RESTful API to models of cosmic ray induced ionising radiation in the atmosphere. The PARMA or CARI7 endpoints can be used to calculate Effective Dose or Ambient Dose Equivalent at a point. \nThe Route Dose API calculates the same quantities along a great circle route between two airports using CARI7. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\ntitle: Aviation Radiation API\nversion: 1.5.0\nx-apisguru-categories: [location, open_data]\nx-logo: { altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }\nx-origin: format url version\n 0 openapi https://cosmicrays.amentum.space//ope... 3.0\n\nx-providerName: amentum.space\nx-serviceName: aviation_radiation\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amen<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.json\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.yaml\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.5.0: DataRow\">1.5.0</span>", children: [11244, 11258, 11259, 11260, 11261, 11262], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:57:07.303Z\ninfo: { contact:{ x-twitter:amentumspace }, description:Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation collides with gases in the atmosphere, leading to a complex shower of high energy radiation, the intensity and composition of which varies spatially and temporally. Excessive exposure to radiation can damage DNA and lead to long-term health effects such as an increased risk of cancer. <br><br> Resulting radiation levels at commercial aircraft altitudes are greater than at sea level due. Aircrew are classified as radiation workers in some countries; however, planning to limit their exposure, and..., title:Aviation Radiation API, version:1.5.0, x-apisguru-categories:[location, open_data], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://cosmicrays.amentum.space//openapi.json, version:3.0 }, x-providerName:amentum.space, x-serviceName:aviation_radiation }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:57:07.303Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11263], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.5.0: { added:2021-01-04T14:57:07.303Z, info:{ contact:{ x-twitter:amentumspace }, description:Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation collides with gases in the atmosphere, leading to a complex shower of high energy radiation, the intensity and composition of which varies spatially and temporally. Excessive exposure to radiation can damage DNA and lead to long-term health effects such as an increased risk of cancer. <br><br> Resulting radiation levels at commercial aircraft altitudes are greater than at sea level due. Aircrew are classified as radiation workers in some countri..., updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amentum.space/aviation_radiation/1.5.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.5.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amentum.space:aviation_radiation: DataRow\">amentum.space:aviation_radiation</span>", children: [11242, 11243, 11264], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:57:07.303Z\npreferred: 1.5.0\nversions: { 1.5.0:{ added:2021-01-04T14:57:07.303Z, info:{ contact:{ x-twitter:amentumspace }, description:Our atmosphere protects us from a hostile space radiation environment comprising high energy particles of solar and intergalactic origin. Solar radiation is significant during unpredictable and short lived solar flares and coronal mass ejections (CMEs); however, galactic cosmic radiation (GCR) is omnipresent. The GCR intensity varies with latitude, longitude, and time due to effects of solar activity on the interplanetary magnetic field, as well as the Earth's magnetic field. Space radiation collides with gases in the atmosphere, leading to a complex shower of high energy radiation, the intensity and composition of which varies spatially and temporally. Excessive exposure to radiation can damage DNA and lead to long-term health effects such as an increased risk of cancer. <br><br> Resulting radiation levels at commercial aircraft altitudes are greater than at sea level due. Aircrew are classifi... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:57:07.303Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-15T12:58:08.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.3.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-15T12:58:08.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["amentumspace"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11269], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: amentumspace\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amentumspace<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"\nThe World Magnetic Model calculates the intensity and direction of the Earth's magnetic field on a specific date-time, geodetic altitude, latitude, and longitude. It is relied upon throughout the world for navigation, mineral exploration, atmospheric and space science, and is installed on billions of devices. <br><br>\nA comprehensive description of the World Magnetic Model, including its limitations, can be found <a href='https://www.ngdc.noaa.gov/geomag/WMM/'>here</a>. <br><br>\nWe provide a RESTful API to access the out-of-cycle World Magnetic Model (WMM2015v2) valid for years 2015.0 - 2020.0 and WMM2020 valid for years 2020.0 - 2025.0<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\">\nThe World Magnetic Model calculates <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Geomag API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.3.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\"><span class=\"structural\">[</span>location<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"altText: String\">altText</span>", children: [], rightAlign: false, values: ["Amentum Aerospace"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11275, 11276, 11277], rightAlign: false, values: ["<span class=\"formatted\" title=\"altText: Amentum Aerospace\nbackgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">altText: </span>Amentum Aerospace<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410489, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amentum.space"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["global-magnet"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11270, 11271, 11272, 11273, 11274, 11278, 11279, 11280, 11281], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:amentumspace }\ndescription: \nThe World Magnetic Model calculates the intensity and direction of the Earth's magnetic field on a specific date-time, geodetic altitude, latitude, and longitude. It is relied upon throughout the world for navigation, mineral exploration, atmospheric and space science, and is installed on billions of devices. <br><br>\nA comprehensive description of the World Magnetic Model, including its limitations, can be found <a href='https://www.ngdc.noaa.gov/geomag/WMM/'>here</a>. <br><br>\nWe provide a RESTful API to access the out-of-cycle World Magnetic Model (WMM2015v2) valid for years 2015.0 - 2020.0 and WMM2020 valid for years 2020.0 - 2025.0<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\ntitle: Geomag API\nversion: 1.3.0\nx-apisguru-categories: [location]\nx-logo: { altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://globalmagnet.amentum.space/wm... 3.0\n\nx-providerName: amentum.space\nx-serviceName: global-magnet\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amen<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.json\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.yaml\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.3.0: DataRow\">1.3.0</span>", children: [11268, 11282, 11283, 11284, 11285, 11286], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-15T12:58:08.000Z\ninfo: { contact:{ x-twitter:amentumspace }, description:\nThe World Magnetic Model calculates the intensity and direction of the Earth's magnetic field on a specific date-time, geodetic altitude, latitude, and longitude. It is relied upon throughout the world for navigation, mineral exploration, atmospheric and space science, and is installed on billions of devices. <br><br>\nA comprehensive description of the World Magnetic Model, including its limitations, can be found <a href='https://www.ngdc.noaa.gov/geomag/WMM/'>here</a>. <br><br>\nWe provide a RESTful API to access the out-of-cycle World Magnetic Model (WMM2015v2) valid for years 2015.0 - 2020.0 and WMM2020 valid for years 2020.0 - 2025.0<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nHelp us improve the quality of our web APIs by completin..., title:Geomag API, version:1.3.0, x-apisguru-categories:[location], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://globalmagnet.amentum.space/wmm/openapi.json, version:3.0 }, x-providerName:amentum.space, x-serviceName:global-magnet }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-15T12:58:08.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11287], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.3.0: { added:2019-07-15T12:58:08.000Z, info:{ contact:{ x-twitter:amentumspace }, description:\nThe World Magnetic Model calculates the intensity and direction of the Earth's magnetic field on a specific date-time, geodetic altitude, latitude, and longitude. It is relied upon throughout the world for navigation, mineral exploration, atmospheric and space science, and is installed on billions of devices. <br><br>\nA comprehensive description of the World Magnetic Model, including its limitations, can be found <a href='https://www.ngdc.noaa.gov/geomag/WMM/'>here</a>. <br><br>\nWe provide a RESTful API to access the out-of-cycle World Magnetic Model (WMM2015v2) valid for years 2015.0 - 2020.0 and WMM2020 valid for years 2020.0 - 2025.0<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\n..., updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amentum.space/global-magnet/1.3.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.3.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-15<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amentum.space:global-magnet: DataRow\">amentum.space:global-magnet</span>", children: [11266, 11267, 11288], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-15T12:58:08.000Z\npreferred: 1.3.0\nversions: { 1.3.0:{ added:2019-07-15T12:58:08.000Z, info:{ contact:{ x-twitter:amentumspace }, description:\nThe World Magnetic Model calculates the intensity and direction of the Earth's magnetic field on a specific date-time, geodetic altitude, latitude, and longitude. It is relied upon throughout the world for navigation, mineral exploration, atmospheric and space science, and is installed on billions of devices. <br><br>\nA comprehensive description of the World Magnetic Model, including its limitations, can be found <a href='https://www.ngdc.noaa.gov/geomag/WMM/'>here</a>. <br><br>\nWe provide a RESTful API to access the out-of-cycle World Magnetic Model (WMM2015v2) valid for years 2015.0 - 2020.0 and WMM2020 valid for years 2020.0 - 2025.0<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-15T12:58:08.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:52:32.799Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:52:32.799Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["amentumspace"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11293], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: amentumspace\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amentumspace<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The gravitational field of the earth is non-uniform. The <a href='https://en.wikipedia.org/wiki/Geoid'>geoid</a> is the shape the\n ocean surface would take if only gravity and the rotation of the Earth\n were considered. The geoid is the surface that defines zero elevation.<br><br>\n\nThe geoid height is the difference between an ideal reference ellipsoid and the geoid.<br><br>\nThe gravity anomaly is the difference between the acceleration due to gravity on the Earth's surface and the value calculated assuming the reference ellipsoid.<br><br>\nThe official Earth Gravitational Model <a href=https://en.wikipedia.org/wiki/Earth_Gravitational_Model#EGM2008/>EGM2008</a> was developed and released to the public by the National Geospatial-Intelligence Agency (NGA).<br><br>\nOur EGM2008 API provides on-demand access to the EGM2008 model, as implemented by the open-source GeographicLib <a href=https://geographiclib.sourceforge.io/html/gravity.html>Gravity</a> library.<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\">The gravitational field of the earth <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Gravity API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\nopen_data\"><span class=\"structural\">[</span>location<span class=\"structural\">, </span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"altText: String\">altText</span>", children: [], rightAlign: false, values: ["Amentum Aerospace"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11299, 11300, 11301], rightAlign: false, values: ["<span class=\"formatted\" title=\"altText: Amentum Aerospace\nbackgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">altText: </span>Amentum Aerospace<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410490, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amentum.space"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gravity"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11294, 11295, 11296, 11297, 11298, 11302, 11303, 11304, 11305], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:amentumspace }\ndescription: The gravitational field of the earth is non-uniform. The <a href='https://en.wikipedia.org/wiki/Geoid'>geoid</a> is the shape the\n ocean surface would take if only gravity and the rotation of the Earth\n were considered. The geoid is the surface that defines zero elevation.<br><br>\n\nThe geoid height is the difference between an ideal reference ellipsoid and the geoid.<br><br>\nThe gravity anomaly is the difference between the acceleration due to gravity on the Earth's surface and the value calculated assuming the reference ellipsoid.<br><br>\nThe official Earth Gravitational Model <a href=https://en.wikipedia.org/wiki/Earth_Gravitational_Model#EGM2008/>EGM2008</a> was developed and released to the public by the National Geospatial-Intelligence Agency (NGA).<br><br>\nOur EGM2008 API provides on-demand access to the EGM2008 model, as implemented by the open-source GeographicLib <a href=https://geographiclib.sourceforge.io/html/gravity.html>Gravity</a> library.<br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\ntitle: Gravity API\nversion: 1.1.1\nx-apisguru-categories: [location, open_data]\nx-logo: { altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }\nx-origin: format url version\n 0 openapi https://gravity.amentum.space//openap... 3.0\n\nx-providerName: amentum.space\nx-serviceName: gravity\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amen<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-05T15:07:17.927Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.json\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.yaml\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.1.1: DataRow\">1.1.1</span>", children: [11292, 11306, 11307, 11308, 11309, 11310], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:52:32.799Z\ninfo: { contact:{ x-twitter:amentumspace }, description:The gravitational field of the earth is non-uniform. The <a href='https://en.wikipedia.org/wiki/Geoid'>geoid</a> is the shape the\n ocean surface would take if only gravity and the rotation of the Earth\n were considered. The geoid is the surface that defines zero elevation.<br><br>\n\nThe geoid height is the difference between an ideal reference ellipsoid and the geoid.<br><br>\nThe gravity anomaly is the difference between the acceleration due to gravity on the Earth's surface and the value calculated assuming the reference ellipsoid.<br><br>\nThe official Earth Gravitational Model <a href=https://en.wikipedia.org/wiki/Earth_Gravitational_Model#EGM2008/>EGM2008</a> was developed and released to the public by the National Geospatial-Intelligence Agency (NGA).<br><br>\nOur EGM2008 API provides on-demand access to the EGM2008 model, as implemented by the open-source GeographicLib <a href=https://geographiclib.sourceforge.io/html/gravity.html>Gravity</a> library.<br><br>\nAPI requests mu..., title:Gravity API, version:1.1.1, x-apisguru-categories:[location, open_data], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://gravity.amentum.space//openapi.json, version:3.0 }, x-providerName:amentum.space, x-serviceName:gravity }\nupdated: 2021-07-05T15:07:17.927Z\nswaggerUrl: https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:52:32.799Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11311], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1.1: { added:2021-01-04T14:52:32.799Z, info:{ contact:{ x-twitter:amentumspace }, description:The gravitational field of the earth is non-uniform. The <a href='https://en.wikipedia.org/wiki/Geoid'>geoid</a> is the shape the\n ocean surface would take if only gravity and the rotation of the Earth\n were considered. The geoid is the surface that defines zero elevation.<br><br>\n\nThe geoid height is the difference between an ideal reference ellipsoid and the geoid.<br><br>\nThe gravity anomaly is the difference between the acceleration due to gravity on the Earth's surface and the value calculated assuming the reference ellipsoid.<br><br>\nThe official Earth Gravitational Model <a href=https://en.wikipedia.org/wiki/Earth_Gravitational_Model#EGM2008/>EGM2008</a> was developed and released to the public by the National Geospatial-Intelligence Agency (NGA).<br><br>\nOur EGM2008 API provides on-demand access to the EGM2008 model, as implemented by the open-source GeographicLib <a href=https://geographiclib.sourceforge.io/html/..., updated:2021-07-05T15:07:17.927Z, swaggerUrl:https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amentum.space/gravity/1.1.1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amentum.space:gravity: DataRow\">amentum.space:gravity</span>", children: [11290, 11291, 11312], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:52:32.799Z\npreferred: 1.1.1\nversions: { 1.1.1:{ added:2021-01-04T14:52:32.799Z, info:{ contact:{ x-twitter:amentumspace }, description:The gravitational field of the earth is non-uniform. The <a href='https://en.wikipedia.org/wiki/Geoid'>geoid</a> is the shape the\n ocean surface would take if only gravity and the rotation of the Earth\n were considered. The geoid is the surface that defines zero elevation.<br><br>\n\nThe geoid height is the difference between an ideal reference ellipsoid and the geoid.<br><br>\nThe gravity anomaly is the difference between the acceleration due to gravity on the Earth's surface and the value calculated assuming the reference ellipsoid.<br><br>\nThe official Earth Gravitational Model <a href=https://en.wikipedia.org/wiki/Earth_Gravitational_Model#EGM2008/>EGM2008</a> was developed and released to the public by the National Geospatial-Intelligence Agency (NGA).<br><br>\nOur EGM2008 API provides on-demand access to the EGM2008 model, as implemented by the open-source GeographicLib <a href=htt... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:52:32.799Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:54:09.334Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-04T14:54:09.334Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["amentumspace"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11317], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: amentumspace\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amentumspace<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Space has a hostile radiation environment that increases the risk of cancers in humans and malfunctions in spacecraft electronics. The types of space radiation of primary concern are:\n <ul>\n <li>\n Galactic Cosmic Rays from outside our solar system generated by \n supernovae and other phenomena;\n </li>\n <li>\n Solar Energetic Particles produced by the Sun during intense and\n sporadic bursts of activity; and\n </li>\n <li>\n Trapped Radiation: energetic particles confined by Earth's magnetic\n field, usually comprising an inner belt of mostly high energy protons \n and an outer belt dominated by lower energy electrons and plasma.\n </li>\n </ul> \n\nUnderstanding the space radiation environment for a particular mission profile is becoming increasingly important. Commercial off-the-shelf electronic components that aren't resilient to space radiation are now prevalent. Longer duration missions to cislunar space, Mars, and beyond are placing astronauts at greater risk of radiation exposure. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\">Space has a hostile radiation environ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Space Radiation API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"location\nopen_data\"><span class=\"structural\">[</span>location<span class=\"structural\">, </span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"altText: String\">altText</span>", children: [], rightAlign: false, values: ["Amentum Aerospace"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11323, 11324, 11325], rightAlign: false, values: ["<span class=\"formatted\" title=\"altText: Amentum Aerospace\nbackgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">altText: </span>Amentum Aerospace<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410491, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["amentum.space"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["space_radiation"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11318, 11319, 11320, 11321, 11322, 11326, 11327, 11328, 11329], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:amentumspace }\ndescription: Space has a hostile radiation environment that increases the risk of cancers in humans and malfunctions in spacecraft electronics. The types of space radiation of primary concern are:\n <ul>\n <li>\n Galactic Cosmic Rays from outside our solar system generated by \n supernovae and other phenomena;\n </li>\n <li>\n Solar Energetic Particles produced by the Sun during intense and\n sporadic bursts of activity; and\n </li>\n <li>\n Trapped Radiation: energetic particles confined by Earth's magnetic\n field, usually comprising an inner belt of mostly high energy protons \n and an outer belt dominated by lower energy electrons and plasma.\n </li>\n </ul> \n\nUnderstanding the space radiation environment for a particular mission profile is becoming increasingly important. Commercial off-the-shelf electronic components that aren't resilient to space radiation are now prevalent. Longer duration missions to cislunar space, Mars, and beyond are placing astronauts at greater risk of radiation exposure. <br><br>\nAPI requests must contain a key "API-Key" in the header (see code samples). Obtain a key from <a href='https://developer.amentum.io'>here</a>. <br><br> \nHelp us improve the quality of our web APIs by completing our 2 minute survey <a href="https://www.surveymonkey.com/r/CTDTRBN">here</a>.<br><br>\nAmentum Pty Ltd is not responsible nor liable for any loss or damage of any sort incurred as a result of using the API. <br><br>\nCopyright <a href='https://amentum.space'>Amentum Pty Ltd</a> 2021.\n\ntitle: Space Radiation API\nversion: 1.1.1\nx-apisguru-categories: [location, open_data]\nx-logo: { altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }\nx-origin: format url version\n 0 openapi https://spaceradiation.amentum.space/... 3.0\n\nx-providerName: amentum.space\nx-serviceName: space_radiation\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>amen<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-05T15:07:17.927Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.json\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.yaml\">https://api.apis.guru/v2/specs/amentu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.1.1: DataRow\">1.1.1</span>", children: [11316, 11330, 11331, 11332, 11333, 11334], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:54:09.334Z\ninfo: { contact:{ x-twitter:amentumspace }, description:Space has a hostile radiation environment that increases the risk of cancers in humans and malfunctions in spacecraft electronics. The types of space radiation of primary concern are:\n <ul>\n <li>\n Galactic Cosmic Rays from outside our solar system generated by \n supernovae and other phenomena;\n </li>\n <li>\n Solar Energetic Particles produced by the Sun during intense and\n sporadic bursts of activity; and\n </li>\n <li>\n Trapped Radiation: energetic particles confined by Earth's magnetic\n field, usually comprising an inner belt of mostly high energy protons \n and an outer belt dominated by lower energy electrons and plasma.\n </li>\n </ul> \n\nUnderstanding the space radiation environment for a particular mission profile is becoming increasingly important. Commercial off-the-shelf electronic components that aren't resilient to space radiation are now prevalent. Longer duration missions to cislunar space, Mars, and beyo..., title:Space Radiation API, version:1.1.1, x-apisguru-categories:[location, open_data], x-logo:{ altText:Amentum Aerospace, backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_amentumspace_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://spaceradiation.amentum.space/openapi.json, version:3.0 }, x-providerName:amentum.space, x-serviceName:space_radiation }\nupdated: 2021-07-05T15:07:17.927Z\nswaggerUrl: https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:54:09.334Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11335], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1.1: { added:2021-01-04T14:54:09.334Z, info:{ contact:{ x-twitter:amentumspace }, description:Space has a hostile radiation environment that increases the risk of cancers in humans and malfunctions in spacecraft electronics. The types of space radiation of primary concern are:\n <ul>\n <li>\n Galactic Cosmic Rays from outside our solar system generated by \n supernovae and other phenomena;\n </li>\n <li>\n Solar Energetic Particles produced by the Sun during intense and\n sporadic bursts of activity; and\n </li>\n <li>\n Trapped Radiation: energetic particles confined by Earth's magnetic\n field, usually comprising an inner belt of mostly high energy protons \n and an outer belt dominated by lower energy electrons and plasma.\n </li>\n </ul> \n\nUnderstanding the space radiation environment for a particular mission profile is becoming increasingly important. Commercial off-the-shelf electronic components that aren't resilient to space radiation are now pre..., updated:2021-07-05T15:07:17.927Z, swaggerUrl:https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/amentum.space/space_radiation/1.1.1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"amentum.space:space_radiation: DataRow\">amentum.space:space_radiation</span>", children: [11314, 11315, 11336], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-04T14:54:09.334Z\npreferred: 1.1.1\nversions: { 1.1.1:{ added:2021-01-04T14:54:09.334Z, info:{ contact:{ x-twitter:amentumspace }, description:Space has a hostile radiation environment that increases the risk of cancers in humans and malfunctions in spacecraft electronics. The types of space radiation of primary concern are:\n <ul>\n <li>\n Galactic Cosmic Rays from outside our solar system generated by \n supernovae and other phenomena;\n </li>\n <li>\n Solar Energetic Particles produced by the Sun during intense and\n sporadic bursts of activity; and\n </li>\n <li>\n Trapped Radiation: energetic particles confined by Earth's magnetic\n field, usually comprising an inner belt of mostly high energy protons \n and an outer belt dominated by lower energy electrons and plasma.\n </li>\n </ul> \n\nUnderstanding the space radiation environment for a particular mission profile is becoming increasingly important. Commercial off-the-shelf electronic components that aren't r... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-04T14:54:09.334Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T17:10:05.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.1.19"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T17:10:05.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["nurmi@anchore.com"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["anchore"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11341, 11342], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: nurmi@anchore.com\nx-twitter: anchore\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>nurmi@anchore.com<span class=\"structural\">, </span><span class=\"structural\">x-twitt...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the Anchore Engine API. Provides the primary external API for users of the service.\">This is the Anchore Engine API. Provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11345, 11346], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Anchore Engine API Server"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.1.19"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11351], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410492, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["anchore.io"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11343, 11344, 11347, 11348, 11349, 11350, 11352, 11353, 11354], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:nurmi@anchore.com, x-twitter:anchore }\ndescription: This is the Anchore Engine API. Provides the primary external API for users of the service.\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Anchore Engine API Server\nversion: 0.1.19\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/anc... 3.0\n\nx-providerName: anchore.io\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>nu<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-16T08:03:09.471Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.json\">https://api.apis.guru/v2/specs/anchor<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.yaml\">https://api.apis.guru/v2/specs/anchor<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"0.1.19: DataRow\">0.1.19</span>", children: [11340, 11355, 11356, 11357, 11358, 11359], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T17:10:05.000Z\ninfo: { contact:{ email:nurmi@anchore.com, x-twitter:anchore }, description:This is the Anchore Engine API. Provides the primary external API for users of the service., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Anchore Engine API Server, version:0.1.19, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/anchore/anchore-engine/master/anchore_engine/services/apiext/swagger/swagger.yaml, version:3.0 }, x-providerName:anchore.io }\nupdated: 2021-08-16T08:03:09.471Z\nswaggerUrl: https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T17:10:05.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11360], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.1.19: { added:2018-03-10T17:10:05.000Z, info:{ contact:{ email:nurmi@anchore.com, x-twitter:anchore }, description:This is the Anchore Engine API. Provides the primary external API for users of the service., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Anchore Engine API Server, version:0.1.19, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/anchore/anchore-engine/master/anchore_engine/services/apiext/swagger/swagger.yaml, version:3.0 }, x-providerName:anchore.io }, updated:2021-08-16T08:03:09.471Z, swaggerUrl:https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.1.19: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"anchore.io: DataRow\">anchore.io</span>", children: [11338, 11339, 11361], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T17:10:05.000Z\npreferred: 0.1.19\nversions: { 0.1.19:{ added:2018-03-10T17:10:05.000Z, info:{ contact:{ email:nurmi@anchore.com, x-twitter:anchore }, description:This is the Anchore Engine API. Provides the primary external API for users of the service., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Anchore Engine API Server, version:0.1.19, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_anchore_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/anchore/anchore-engine/master/anchore_engine/services/apiext/swagger/swagger.yaml, version:3.0 }, x-providerName:anchore.io }, updated:2021-08-16T08:03:09.471Z, swaggerUrl:https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/anchore.io/0.1.19/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T17:10:05.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-02T12:25:21.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-02T12:25:21.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["TheASF"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11366], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: TheASF\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>TheASF<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API for Qakka Queue System"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11369, 11370], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Qakka"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"messaging\"><span class=\"structural\">[</span>messaging<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11375], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410493, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apache.org"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["qakka"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11367, 11368, 11371, 11372, 11373, 11374, 11376, 11377, 11378, 11379], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:TheASF }\ndescription: API for Qakka Queue System\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Qakka\nversion: v1\nx-apisguru-categories: [messaging]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/apa... 2.0\n\nx-providerName: apache.org\nx-serviceName: qakka\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>TheASF<span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-11-23T17:04:42.171Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.json\">https://api.apis.guru/v2/specs/apache<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.yaml\">https://api.apis.guru/v2/specs/apache<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"v1: DataRow\">v1</span>", children: [11365, 11380, 11381, 11382, 11383, 11384], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-02T12:25:21.000Z\ninfo: { contact:{ x-twitter:TheASF }, description:API for Qakka Queue System, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Qakka, version:v1, x-apisguru-categories:[messaging], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/apache/usergrid-qakka/master/docs/swagger.json, version:2.0 }, x-providerName:apache.org, x-serviceName:qakka }\nupdated: 2020-11-23T17:04:42.171Z\nswaggerUrl: https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-02T12:25:21.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11385], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1: { added:2018-03-02T12:25:21.000Z, info:{ contact:{ x-twitter:TheASF }, description:API for Qakka Queue System, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Qakka, version:v1, x-apisguru-categories:[messaging], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/apache/usergrid-qakka/master/docs/swagger.json, version:2.0 }, x-providerName:apache.org, x-serviceName:qakka }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-02T12<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apache.org:qakka: DataRow\">apache.org:qakka</span>", children: [11363, 11364, 11386], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-02T12:25:21.000Z\npreferred: v1\nversions: { v1:{ added:2018-03-02T12:25:21.000Z, info:{ contact:{ x-twitter:TheASF }, description:API for Qakka Queue System, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Qakka, version:v1, x-apisguru-categories:[messaging], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_TheASF_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/apache/usergrid-qakka/master/docs/swagger.json, version:2.0 }, x-providerName:apache.org, x-serviceName:qakka }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apache.org/qakka/v1/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-02T12:25:21.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-17T22:40:07.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.0.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-17T22:40:07.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"API for a tool to craftsmen used to register working hours, material usage and quality assurance. \n# Endpoint\nThe endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).\n# Authentication\nURL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication\n# Pagination\nIf the endpoint returns a `pagination` object it means the endpoint supports pagination - currently it's only possible to change pages with `?page={page_number}` but implementing custom page sizes are on the road map.\n\n\n# Search/filter\nIs experimental but implemented in some cases - see the individual endpoints' docs for further explanation.\n# Ordering\nIs currently experimental, but on some endpoints it's implemented on URL querys so eg. to order Invoices by `invoice_number` appending `?sort=Invoices.invoice_number&direction=desc` would sort the list descending by the value of `invoice_number`.\n# Associations\nIs currently implemented on an experimental basis where you can append eg. `?include=Contacts,Projects` to the `/api/v1/invoices/` endpoint to embed `Contact` and `Project` objects directly.\n# Project Files\nCurrently project files can be retrieved from two endpoints. `/projects/{project_id}/files` handles files uploaded from wall posts or forms. `/projects/{project_id}/project_files` allows uploading and showing files, not belonging to specific form or wall post.\n# Errors/Exceptions\n## 422 (Validation)\nWrite something about how the `errors` object contains keys with the properties that failes validation like:\n```\n {\n "success": false,\n "data": {\n "code": 422,\n "url": "/api/v1/contacts?api_key=5523be3b-30ef-425d-8203-04df7caaa93a",\n "message": "A validation error occurred",\n "errorCount": 1,\n "errors": {\n "contact_types": [ ## Property name that failed validation\n "Contacts must have at least one contact type" ## Message with further explanation\n ]\n }\n }\n }\n```\n## Code examples\nRunning examples of how to retrieve the 5 most recent forms registered and embed the details of the User that made the form, and eventual products contained in the form\n### Swift\n```\n \n```\n### Java\n#### OkHttp\n```\n OkHttpClient client = new OkHttpClient();\n \n Request request = new Request.Builder()\n .url("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n .get()\n .addHeader("x-auth-token", "{INSERT_YOUR_TOKEN}")\n .addHeader("accept", "application/json")\n .build();\n \n Response response = client.newCall(request).execute();\n```\n#### Unirest\n```\n HttpResponse<String> response = Unirest.get("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n .header("x-auth-token", "{INSERT_YOUR_TOKEN}")\n .header("accept", "application/json")\n .asString();\n```\n### Javascript\n#### Native\n```\n var data = null;\n \n var xhr = new XMLHttpRequest();\n xhr.withCredentials = true;\n \n xhr.addEventListener("readystatechange", function () {\n if (this.readyState === 4) {\n console.log(this.responseText);\n }\n });\n \n xhr.open("GET", "https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5");\n xhr.setRequestHeader("x-auth-token", "{INSERT_YOUR_TOKEN}");\n xhr.setRequestHeader("accept", "application/json");\n \n xhr.send(data);\n```\n#### jQuery\n```\n var settings = {\n "async": true,\n "crossDomain": true,\n "url": "https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5",\n "method": "GET",\n "headers": {\n "x-auth-token": "{INSERT_YOUR_TOKEN}",\n "accept": "application/json",\n }\n }\n \n $.ajax(settings).done(function (response) {\n console.log(response);\n });\n```\n#### NodeJS (Request)\n```\n var request = require("request");\n\n var options = { method: 'GET',\n url: 'https://app.apacta.com/api/v1/forms',\n qs: \n { extended: 'true',\n sort: 'Forms.created',\n direction: 'DESC',\n include: 'Products,CreatedBy',\n limit: '5' },\n headers: \n { accept: 'application/json',\n 'x-auth-token': '{INSERT_YOUR_TOKEN}' } };\n \n request(options, function (error, response, body) {\n if (error) throw new Error(error);\n \n console.log(body);\n });\n\n```\n### Python 3\n```\n import http.client\n \n conn = http.client.HTTPSConnection("app.apacta.com")\n \n payload = ""\n \n headers = {\n 'x-auth-token': "{INSERT_YOUR_TOKEN}",\n 'accept': "application/json",\n }\n \n conn.request("GET", "/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5", payload, headers)\n \n res = conn.getresponse()\n data = res.read()\n \n print(data.decode("utf-8"))\n```\n### C#\n#### RestSharp\n```\n var client = new RestClient("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5");\n var request = new RestRequest(Method.GET);\n request.AddHeader("accept", "application/json");\n request.AddHeader("x-auth-token", "{INSERT_YOUR_TOKEN}");\n IRestResponse response = client.Execute(request); \n```\n### Ruby\n```\n require 'uri'\n require 'net/http'\n \n url = URI("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n \n http = Net::HTTP.new(url.host, url.port)\n http.use_ssl = true\n http.verify_mode = OpenSSL::SSL::VERIFY_NONE\n \n request = Net::HTTP::Get.new(url)\n request["x-auth-token"] = '{INSERT_YOUR_TOKEN}'\n request["accept"] = 'application/json'\n \n response = http.request(request)\n puts response.read_body\n```\n### PHP (HttpRequest)\n```\n <?php\n\n $request = new HttpRequest();\n $request->setUrl('https://app.apacta.com/api/v1/forms');\n $request->setMethod(HTTP_METH_GET);\n \n $request->setQueryData(array(\n 'extended' => 'true',\n 'sort' => 'Forms.created',\n 'direction' => 'DESC',\n 'include' => 'Products,CreatedBy',\n 'limit' => '5'\n ));\n \n $request->setHeaders(array(\n 'accept' => 'application/json',\n 'x-auth-token' => '{INSERT_YOUR_TOKEN}'\n ));\n \n try {\n $response = $request->send();\n \n echo $response->getBody();\n } catch (HttpException $ex) {\n echo $ex;\n }\n```\n### Shell (cURL)\n```\n\n $ curl --request GET --url 'https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5' --header 'accept: application/json' --header 'x-auth-token: {INSERT_YOUR_TOKEN}'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n```\">API for a tool to craftsmen used to r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Apacta"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.0.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"time_management\nproject_management\"><span class=\"structural\">[</span>time_management<span class=\"structural\">, </span>project_management<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_apactadk_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11395], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_apactadk_profile_image.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410494, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apacta.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11391, 11392, 11393, 11394, 11396, 11397, 11398], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: API for a tool to craftsmen used to register working hours, material usage and quality assurance. \n# Endpoint\nThe endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).\n# Authentication\nURL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication\n# Pagination\nIf the endpoint returns a `pagination` object it means the endpoint supports pagination - currently it's only possible to change pages with `?page={page_number}` but implementing custom page sizes are on the road map.\n\n\n# Search/filter\nIs experimental but implemented in some cases - see the individual endpoints' docs for further explanation.\n# Ordering\nIs currently experimental, but on some endpoints it's implemented on URL querys so eg. to order Invoices by `invoice_number` appending `?sort=Invoices.invoice_number&direction=desc` would sort the list descending by the value of `invoice_number`.\n# Associations\nIs currently implemented on an experimental basis where you can append eg. `?include=Contacts,Projects` to the `/api/v1/invoices/` endpoint to embed `Contact` and `Project` objects directly.\n# Project Files\nCurrently project files can be retrieved from two endpoints. `/projects/{project_id}/files` handles files uploaded from wall posts or forms. `/projects/{project_id}/project_files` allows uploading and showing files, not belonging to specific form or wall post.\n# Errors/Exceptions\n## 422 (Validation)\nWrite something about how the `errors` object contains keys with the properties that failes validation like:\n```\n {\n "success": false,\n "data": {\n "code": 422,\n "url": "/api/v1/contacts?api_key=5523be3b-30ef-425d-8203-04df7caaa93a",\n "message": "A validation error occurred",\n "errorCount": 1,\n "errors": {\n "contact_types": [ ## Property name that failed validation\n "Contacts must have at least one contact type" ## Message with further explanation\n ]\n }\n }\n }\n```\n## Code examples\nRunning examples of how to retrieve the 5 most recent forms registered and embed the details of the User that made the form, and eventual products contained in the form\n### Swift\n```\n \n```\n### Java\n#### OkHttp\n```\n OkHttpClient client = new OkHttpClient();\n \n Request request = new Request.Builder()\n .url("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n .get()\n .addHeader("x-auth-token", "{INSERT_YOUR_TOKEN}")\n .addHeader("accept", "application/json")\n .build();\n \n Response response = client.newCall(request).execute();\n```\n#### Unirest\n```\n HttpResponse<String> response = Unirest.get("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n .header("x-auth-token", "{INSERT_YOUR_TOKEN}")\n .header("accept", "application/json")\n .asString();\n```\n### Javascript\n#### Native\n```\n var data = null;\n \n var xhr = new XMLHttpRequest();\n xhr.withCredentials = true;\n \n xhr.addEventListener("readystatechange", function () {\n if (this.readyState === 4) {\n console.log(this.responseText);\n }\n });\n \n xhr.open("GET", "https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5");\n xhr.setRequestHeader("x-auth-token", "{INSERT_YOUR_TOKEN}");\n xhr.setRequestHeader("accept", "application/json");\n \n xhr.send(data);\n```\n#### jQuery\n```\n var settings = {\n "async": true,\n "crossDomain": true,\n "url": "https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5",\n "method": "GET",\n "headers": {\n "x-auth-token": "{INSERT_YOUR_TOKEN}",\n "accept": "application/json",\n }\n }\n \n $.ajax(settings).done(function (response) {\n console.log(response);\n });\n```\n#### NodeJS (Request)\n```\n var request = require("request");\n\n var options = { method: 'GET',\n url: 'https://app.apacta.com/api/v1/forms',\n qs: \n { extended: 'true',\n sort: 'Forms.created',\n direction: 'DESC',\n include: 'Products,CreatedBy',\n limit: '5' },\n headers: \n { accept: 'application/json',\n 'x-auth-token': '{INSERT_YOUR_TOKEN}' } };\n \n request(options, function (error, response, body) {\n if (error) throw new Error(error);\n \n console.log(body);\n });\n\n```\n### Python 3\n```\n import http.client\n \n conn = http.client.HTTPSConnection("app.apacta.com")\n \n payload = ""\n \n headers = {\n 'x-auth-token': "{INSERT_YOUR_TOKEN}",\n 'accept': "application/json",\n }\n \n conn.request("GET", "/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5", payload, headers)\n \n res = conn.getresponse()\n data = res.read()\n \n print(data.decode("utf-8"))\n```\n### C#\n#### RestSharp\n```\n var client = new RestClient("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5");\n var request = new RestRequest(Method.GET);\n request.AddHeader("accept", "application/json");\n request.AddHeader("x-auth-token", "{INSERT_YOUR_TOKEN}");\n IRestResponse response = client.Execute(request); \n```\n### Ruby\n```\n require 'uri'\n require 'net/http'\n \n url = URI("https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5")\n \n http = Net::HTTP.new(url.host, url.port)\n http.use_ssl = true\n http.verify_mode = OpenSSL::SSL::VERIFY_NONE\n \n request = Net::HTTP::Get.new(url)\n request["x-auth-token"] = '{INSERT_YOUR_TOKEN}'\n request["accept"] = 'application/json'\n \n response = http.request(request)\n puts response.read_body\n```\n### PHP (HttpRequest)\n```\n <?php\n\n $request = new HttpRequest();\n $request->setUrl('https://app.apacta.com/api/v1/forms');\n $request->setMethod(HTTP_METH_GET);\n \n $request->setQueryData(array(\n 'extended' => 'true',\n 'sort' => 'Forms.created',\n 'direction' => 'DESC',\n 'include' => 'Products,CreatedBy',\n 'limit' => '5'\n ));\n \n $request->setHeaders(array(\n 'accept' => 'application/json',\n 'x-auth-token' => '{INSERT_YOUR_TOKEN}'\n ));\n \n try {\n $response = $request->send();\n \n echo $response->getBody();\n } catch (HttpException $ex) {\n echo $ex;\n }\n```\n### Shell (cURL)\n```\n\n $ curl --request GET --url 'https://app.apacta.com/api/v1/forms?extended=true&sort=Forms.created&direction=DESC&include=Products%2CCreatedBy&limit=5' --header 'accept: application/json' --header 'x-auth-token: {INSERT_YOUR_TOKEN}'\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n```\ntitle: Apacta\nversion: 0.0.1\nx-apisguru-categories: [time_management, project_management]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_apactadk_profile_image.png }\nx-origin: format url version\n 0 swagger http://apidoc.apacta.com/swagger.yaml 2.0\n\nx-providerName: apacta.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>API for a tool <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-01-03T07:01:34.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.json\">https://api.apis.guru/v2/specs/apacta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.yaml\">https://api.apis.guru/v2/specs/apacta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"0.0.1: DataRow\">0.0.1</span>", children: [11390, 11399, 11400, 11401, 11402, 11403], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-17T22:40:07.000Z\ninfo: { description:API for a tool to craftsmen used to register working hours, material usage and quality assurance. \n# Endpoint\nThe endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).\n# Authentication\nURL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication\n# Pagination\nIf the endpoint returns a `pagination` object it means the endpoint supports pagination - currently it's only possible to change pages with `?page={page_number}` but implementing custom page sizes are on the road map.\n\n\n# Search/filter\nIs experimental but implemented in some cases - see the individual endpoints' docs for further explanation.\n# Ordering\nIs currently experimental, but on some endpoints it's implemented on URL querys so eg. to order Invoices by `invoice_number` appending `?sort=Invoices.invoice_number&direct..., title:Apacta, version:0.0.1, x-apisguru-categories:[time_management, project_management], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_apactadk_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:http://apidoc.apacta.com/swagger.yaml, version:2.0 }, x-providerName:apacta.com }\nupdated: 2019-01-03T07:01:34.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-17T22:40:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11404], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.0.1: { added:2017-03-17T22:40:07.000Z, info:{ description:API for a tool to craftsmen used to register working hours, material usage and quality assurance. \n# Endpoint\nThe endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).\n# Authentication\nURL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication\n# Pagination\nIf the endpoint returns a `pagination` object it means the endpoint supports pagination - currently it's only possible to change pages with `?page={page_number}` but implementing custom page sizes are on the road map.\n\n\n# Search/filter\nIs experimental but implemented in some cases - see the individual endpoints' docs for further explanation.\n# Ordering\nIs currently experimental, but on some endpoints it's implemented on URL querys so eg. to order Invoices by `invoice_number` appending `?sort=Invo..., updated:2019-01-03T07:01:34.000Z, swaggerUrl:https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apacta.com/0.0.1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.0.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-17<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apacta.com: DataRow\">apacta.com</span>", children: [11388, 11389, 11405], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-17T22:40:07.000Z\npreferred: 0.0.1\nversions: { 0.0.1:{ added:2017-03-17T22:40:07.000Z, info:{ description:API for a tool to craftsmen used to register working hours, material usage and quality assurance. \n# Endpoint\nThe endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https).\n# Authentication\nURL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication\n# Pagination\nIf the endpoint returns a `pagination` object it means the endpoint supports pagination - currently it's only possible to change pages with `?page={page_number}` but implementing custom page sizes are on the road map.\n\n\n# Search/filter\nIs experimental but implemented in some cases - see the individual endpoints' docs for further explanation.\n# Ordering\nIs currently experimental, but on some endpoints it's implemented on URL querys so eg. to order Invoices by... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-17T22:40:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1.6.3"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay Inc,"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ebay"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11410, 11411], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay Inc,\nx-twitter: ebay\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay Inc,<span class=\"structural\">, </span><span class=\"structural\">x-twitter: </span>ebay<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (the Fulfillment Policy, Payment Policy, and Return Policy), opt in and out of eBay seller programs, configure sales tax tables, and get account information. <br><br>For details on the availability of the methods in this API, see <a href="/api-docs/sell/account/overview.html#requirements">Account API requirements and restrictions</a>.\">The <b>Account API</b> gives sellers <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay API License Agreement"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://go.developer.ebay.com/api-license-agreement\">https://go.developer.ebay.com/api-lic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11414, 11415], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay API License Agreement\nurl: https://go.developer.ebay.com/api-license-agreement\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay API License Agre<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Account API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1.6.3"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11420, 11421], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410495, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ebay.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sell-account"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11412, 11413, 11416, 11417, 11418, 11419, 11422, 11423, 11424, 11425], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:eBay Inc,, x-twitter:ebay }\ndescription: The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (the Fulfillment Policy, Payment Policy, and Return Policy), opt in and out of eBay seller programs, configure sales tax tables, and get account information. <br><br>For details on the availability of the methods in this API, see <a href="/api-docs/sell/account/overview.html#requirements">Account API requirements and restrictions</a>.\nlicense: { name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }\ntitle: Account API\nversion: v1.6.3\nx-apisguru-categories: [ecommerce]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }\nx-origin: format url version\n 0 openapi https://developer.ebay.com/api-docs/m... 3.0\n\nx-providerName: ebay.com\nx-serviceName: sell-account\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-30T09:57:47.461Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.json\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.yaml\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"v1.6.3: DataRow\">v1.6.3</span>", children: [11409, 11426, 11427, 11428, 11429, 11430], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\ninfo: { contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (the Fulfillment Policy, Payment Policy, and Return Policy), opt in and out of eBay seller programs, configure sales tax tables, and get account information. <br><br>For details on the availability of the methods in this API, see <a href="/api-docs/sell/account/overview.html#requirements">Account API requirements and restrictions</a>., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Account API, version:v1.6.3, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/account/openapi/3/sell_account_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-account }\nupdated: 2021-06-30T09:57:47.461Z\nswaggerUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11431], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1.6.3: { added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (the Fulfillment Policy, Payment Policy, and Return Policy), opt in and out of eBay seller programs, configure sales tax tables, and get account information. <br><br>For details on the availability of the methods in this API, see <a href="/api-docs/sell/account/overview.html#requirements">Account API requirements and restrictions</a>., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Account API, version:v1.6.3, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/account/openapi/3/sell_account_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-a..., updated:2021-06-30T09:57:47.461Z, swaggerUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-account/v1.6.3/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1.6.3: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api.ebay.com:sell-account: DataRow\">api.ebay.com:sell-account</span>", children: [11407, 11408, 11432], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\npreferred: v1.6.3\nversions: { v1.6.3:{ added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <b>Account API</b> gives sellers the ability to configure their eBay seller accounts, including the seller's policies (the Fulfillment Policy, Payment Policy, and Return Policy), opt in and out of eBay seller programs, configure sales tax tables, and get account information. <br><br>For details on the availability of the methods in this API, see <a href="/api-docs/sell/account/overview.html#requirements">Account API requirements and restrictions</a>., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Account API, version:v1.6.3, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/account/openapi/3/sell_account_v1_oas3.json, version:3.0 }, x-prov... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.2.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay Inc,"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ebay"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11437, 11438], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay Inc,\nx-twitter: ebay\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay Inc,<span class=\"structural\">, </span><span class=\"structural\">x-twitter: </span>ebay<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The <i>Analytics API</i> provides data and information about a seller and their eBay business. <br><br>The resources and methods in this API let sellers review information on their listing performance, metrics on their customer service performance, and details on their eBay seller performance rating. <br><br>The three resources in the Analytics API provide the following data and information: <ul><li><b>Customer Service Metric</b> &ndash; Returns data on a seller's customer service performance as compared to other seller's in the same peer group.</li> <li><b>Traffic Report</b> &ndash; Returns data that shows how buyers are engaging with a seller's listings.</li> <li><b>Seller Standards Profile</b> &ndash; Returns data pertaining to a seller's performance rating.</li></ul> Sellers can use the data and information returned by the various Analytics API methods to determine where they can make improvements to increase sales and how they might improve their seller status as viewed by eBay buyers. <br><br>For details on using this API, see <a href="/api-docs/sell/static/performance/analyzing-performance.html" title="Selling Integration Guide">Analyzing seller performance</a>.\">The <i>Analytics API</i> provides dat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay API License Agreement"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://go.developer.ebay.com/api-license-agreement\">https://go.developer.ebay.com/api-lic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11441, 11442], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay API License Agreement\nurl: https://go.developer.ebay.com/api-license-agreement\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay API License Agre<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: [" Seller Service Metrics API "] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.2.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11447, 11448], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410496, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ebay.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sell-analytics"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11439, 11440, 11443, 11444, 11445, 11446, 11449, 11450, 11451, 11452], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:eBay Inc,, x-twitter:ebay }\ndescription: The <i>Analytics API</i> provides data and information about a seller and their eBay business. <br><br>The resources and methods in this API let sellers review information on their listing performance, metrics on their customer service performance, and details on their eBay seller performance rating. <br><br>The three resources in the Analytics API provide the following data and information: <ul><li><b>Customer Service Metric</b> &ndash; Returns data on a seller's customer service performance as compared to other seller's in the same peer group.</li> <li><b>Traffic Report</b> &ndash; Returns data that shows how buyers are engaging with a seller's listings.</li> <li><b>Seller Standards Profile</b> &ndash; Returns data pertaining to a seller's performance rating.</li></ul> Sellers can use the data and information returned by the various Analytics API methods to determine where they can make improvements to increase sales and how they might improve their seller status as viewed by eBay buyers. <br><br>For details on using this API, see <a href="/api-docs/sell/static/performance/analyzing-performance.html" title="Selling Integration Guide">Analyzing seller performance</a>.\nlicense: { name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }\ntitle: Seller Service Metrics API \nversion: 1.2.0\nx-apisguru-categories: [ecommerce]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }\nx-origin: format url version\n 0 openapi https://developer.ebay.com/api-docs/m... 3.0\n\nx-providerName: ebay.com\nx-serviceName: sell-analytics\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-12-14T10:02:01.592Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.json\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.yaml\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.2.0: DataRow\">1.2.0</span>", children: [11436, 11453, 11454, 11455, 11456, 11457], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\ninfo: { contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <i>Analytics API</i> provides data and information about a seller and their eBay business. <br><br>The resources and methods in this API let sellers review information on their listing performance, metrics on their customer service performance, and details on their eBay seller performance rating. <br><br>The three resources in the Analytics API provide the following data and information: <ul><li><b>Customer Service Metric</b> &ndash; Returns data on a seller's customer service performance as compared to other seller's in the same peer group.</li> <li><b>Traffic Report</b> &ndash; Returns data that shows how buyers are engaging with a seller's listings.</li> <li><b>Seller Standards Profile</b> &ndash; Returns data pertaining to a seller's performance rating.</li></ul> Sellers can use the data and information returned by the various Analytics API methods to determine where they can make improvements to increase sales and how they might improve their seller status as viewed by eB..., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title: Seller Service Metrics API , version:1.2.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/analytics/openapi/3/sell_analytics_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-analytics }\nupdated: 2020-12-14T10:02:01.592Z\nswaggerUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11458], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.2.0: { added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <i>Analytics API</i> provides data and information about a seller and their eBay business. <br><br>The resources and methods in this API let sellers review information on their listing performance, metrics on their customer service performance, and details on their eBay seller performance rating. <br><br>The three resources in the Analytics API provide the following data and information: <ul><li><b>Customer Service Metric</b> &ndash; Returns data on a seller's customer service performance as compared to other seller's in the same peer group.</li> <li><b>Traffic Report</b> &ndash; Returns data that shows how buyers are engaging with a seller's listings.</li> <li><b>Seller Standards Profile</b> &ndash; Returns data pertaining to a seller's performance rating.</li></ul> Sellers can use the data and information returned by the various Analytics API methods to determine where they can make improvements to increase sales and ..., updated:2020-12-14T10:02:01.592Z, swaggerUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-analytics/1.2.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.2.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api.ebay.com:sell-analytics: DataRow\">api.ebay.com:sell-analytics</span>", children: [11434, 11435, 11459], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\npreferred: 1.2.0\nversions: { 1.2.0:{ added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:The <i>Analytics API</i> provides data and information about a seller and their eBay business. <br><br>The resources and methods in this API let sellers review information on their listing performance, metrics on their customer service performance, and details on their eBay seller performance rating. <br><br>The three resources in the Analytics API provide the following data and information: <ul><li><b>Customer Service Metric</b> &ndash; Returns data on a seller's customer service performance as compared to other seller's in the same peer group.</li> <li><b>Traffic Report</b> &ndash; Returns data that shows how buyers are engaging with a seller's listings.</li> <li><b>Seller Standards Profile</b> &ndash; Returns data pertaining to a seller's performance rating.</li></ul> Sellers can use the data and information returned by the various Analytics API methods to determine where they can m... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.4.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-18T21:17:36.109Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay Inc,"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ebay"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11464, 11465], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay Inc,\nx-twitter: ebay\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay Inc,<span class=\"structural\">, </span><span class=\"structural\">x-twitter: </span>ebay<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Service for providing information to sellers about their listings being non-compliant, or at risk for becoming non-compliant, against eBay listing policies.\">Service for providing information to <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay API License Agreement"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://go.developer.ebay.com/api-license-agreement\">https://go.developer.ebay.com/api-lic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11468, 11469], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay API License Agreement\nurl: https://go.developer.ebay.com/api-license-agreement\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay API License Agre<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Compliance API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.4.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11474, 11475], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410497, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ebay.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sell-compliance"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11466, 11467, 11470, 11471, 11472, 11473, 11476, 11477, 11478, 11479], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:eBay Inc,, x-twitter:ebay }\ndescription: Service for providing information to sellers about their listings being non-compliant, or at risk for becoming non-compliant, against eBay listing policies.\nlicense: { name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }\ntitle: Compliance API\nversion: 1.4.1\nx-apisguru-categories: [ecommerce]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }\nx-origin: format url version\n 0 openapi https://developer.ebay.com/api-docs/m... 3.0\n\nx-providerName: ebay.com\nx-serviceName: sell-compliance\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-11-23T17:04:42.171Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.json\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.yaml\">https://api.apis.guru/v2/specs/api.eb<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.4.1: DataRow\">1.4.1</span>", children: [11463, 11480, 11481, 11482, 11483, 11484], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\ninfo: { contact:{ name:eBay Inc,, x-twitter:ebay }, description:Service for providing information to sellers about their listings being non-compliant, or at risk for becoming non-compliant, against eBay listing policies., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Compliance API, version:1.4.1, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/compliance/openapi/3/sell_compliance_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-compliance }\nupdated: 2020-11-23T17:04:42.171Z\nswaggerUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11485], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.4.1: { added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:Service for providing information to sellers about their listings being non-compliant, or at risk for becoming non-compliant, against eBay listing policies., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Compliance API, version:1.4.1, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/compliance/openapi/3/sell_compliance_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-compliance }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.4.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api.ebay.com:sell-compliance: DataRow\">api.ebay.com:sell-compliance</span>", children: [11461, 11462, 11486], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-18T21:17:36.109Z\npreferred: 1.4.1\nversions: { 1.4.1:{ added:2020-07-18T21:17:36.109Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:Service for providing information to sellers about their listings being non-compliant, or at risk for becoming non-compliant, against eBay listing policies., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Compliance API, version:1.4.1, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/compliance/openapi/3/sell_compliance_v1_oas3.json, version:3.0 }, x-providerName:ebay.com, x-serviceName:sell-compliance }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.ebay.com/sell-compliance/1.4.1/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-18T21:17:36.109Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-21T15:00:15.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-04-21T15:00:15.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["DvlaAPIAccess@dvla.gov.uk"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["DVLA API Team"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["GDSTeam"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11491, 11492, 11493], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: DvlaAPIAccess@dvla.gov.uk\nname: DVLA API Team\nx-twitter: GDSTeam\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>DvlaAPIAccess@dvla.go<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Interface specification for the DVLA Vehicle Enquiry API\">Interface specification for the DVLA <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Vehicle Enquiry API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11499], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410498, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["api.gov.uk"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["vehicle-enquiry"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11494, 11495, 11496, 11497, 11498, 11500, 11501, 11502, 11503], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:DvlaAPIAccess@dvla.gov.uk, name:DVLA API Team, x-twitter:GDSTeam }\ndescription: Interface specification for the DVLA Vehicle Enquiry API\ntitle: Vehicle Enquiry API\nversion: 1.1.0\nx-apisguru-categories: [open_data]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png }\nx-origin: format url version\n 0 openapi https://developer-portal.driver-vehic... 3.0\n\nx-providerName: api.gov.uk\nx-serviceName: vehicle-enquiry\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>Dvl<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.json\">https://api.apis.guru/v2/specs/api.go<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.yaml\">https://api.apis.guru/v2/specs/api.go<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.1.0: DataRow\">1.1.0</span>", children: [11490, 11504, 11505, 11506, 11507, 11508], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-21T15:00:15.000Z\ninfo: { contact:{ email:DvlaAPIAccess@dvla.gov.uk, name:DVLA API Team, x-twitter:GDSTeam }, description:Interface specification for the DVLA Vehicle Enquiry API, title:Vehicle Enquiry API, version:1.1.0, x-apisguru-categories:[open_data], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer-portal.driver-vehicle-licensing.api.gov.uk/apis/vehicle-enquiry-service/v1.1.0-vehicle-enquiry-service.json, version:3.0 }, x-providerName:api.gov.uk, x-serviceName:vehicle-enquiry }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-21T15:00:15.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11509], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1.0: { added:2020-04-21T15:00:15.000Z, info:{ contact:{ email:DvlaAPIAccess@dvla.gov.uk, name:DVLA API Team, x-twitter:GDSTeam }, description:Interface specification for the DVLA Vehicle Enquiry API, title:Vehicle Enquiry API, version:1.1.0, x-apisguru-categories:[open_data], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer-portal.driver-vehicle-licensing.api.gov.uk/apis/vehicle-enquiry-service/v1.1.0-vehicle-enquiry-service.json, version:3.0 }, x-providerName:api.gov.uk, x-serviceName:vehicle-enquiry }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-21<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api.gov.uk:vehicle-enquiry: DataRow\">api.gov.uk:vehicle-enquiry</span>", children: [11488, 11489, 11510], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-04-21T15:00:15.000Z\npreferred: 1.1.0\nversions: { 1.1.0:{ added:2020-04-21T15:00:15.000Z, info:{ contact:{ email:DvlaAPIAccess@dvla.gov.uk, name:DVLA API Team, x-twitter:GDSTeam }, description:Interface specification for the DVLA Vehicle Enquiry API, title:Vehicle Enquiry API, version:1.1.0, x-apisguru-categories:[open_data], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_GDSTeam_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer-portal.driver-vehicle-licensing.api.gov.uk/apis/vehicle-enquiry-service/v1.1.0-vehicle-enquiry-service.json, version:3.0 }, x-providerName:api.gov.uk, x-serviceName:vehicle-enquiry }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.gov.uk/vehicle-enquiry/1.1.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-04-21T15:00:15.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-13T13:36:22.234Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-13T13:36:22.234Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.\">api.video is an API that encodes on t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["api.video"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"media\"><span class=\"structural\">[</span>media<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11519], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410499, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["api.video"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11515, 11516, 11517, 11518, 11520, 11521, 11522], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.\ntitle: api.video\nversion: 1\nx-apisguru-categories: [media]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png }\nx-origin: format url version\n 0 openapi https://docs.api.video/openapi/5f0d46... 3.0\n\nx-providerName: api.video\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>api.video is an<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-16T08:03:09.471Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.video/1/openapi.json\">https://api.apis.guru/v2/specs/api.vi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api.video/1/openapi.yaml\">https://api.apis.guru/v2/specs/api.vi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1: DataRow\">1</span>", children: [11514, 11523, 11524, 11525, 11526, 11527], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-13T13:36:22.234Z\ninfo: { description:api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes., title:api.video, version:1, x-apisguru-categories:[media], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png }, x-origin:[1 x 3] { format:openapi, url:https://docs.api.video/openapi/5f0d4679158b8d006ea6f068, version:3.0 }, x-providerName:api.video }\nupdated: 2021-08-16T08:03:09.471Z\nswaggerUrl: https://api.apis.guru/v2/specs/api.video/1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api.video/1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-13T13:36:22.234Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11528], rightAlign: false, values: ["<span class=\"formatted\" title=\"1: { added:2021-01-13T13:36:22.234Z, info:{ description:api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes., title:api.video, version:1, x-apisguru-categories:[media], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png }, x-origin:[1 x 3] { format:openapi, url:https://docs.api.video/openapi/5f0d4679158b8d006ea6f068, version:3.0 }, x-providerName:api.video }, updated:2021-08-16T08:03:09.471Z, swaggerUrl:https://api.apis.guru/v2/specs/api.video/1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.video/1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-13T13:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api.video: DataRow\">api.video</span>", children: [11512, 11513, 11529], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-13T13:36:22.234Z\npreferred: 1\nversions: { 1:{ added:2021-01-13T13:36:22.234Z, info:{ description:api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes., title:api.video, version:1, x-apisguru-categories:[media], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_www.datocms-assets.com_26885_1588249863-favicon.png }, x-origin:[1 x 3] { format:openapi, url:https://docs.api.video/openapi/5f0d4679158b8d006ea6f068, version:3.0 }, x-providerName:api.video }, updated:2021-08-16T08:03:09.471Z, swaggerUrl:https://api.apis.guru/v2/specs/api.video/1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api.video/1/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-13T13:36:22.234Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T17:05:01.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T17:05:01.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["contact@api2cart.com"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["API2Cart"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11534, 11535], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: contact@api2cart.com\nx-twitter: API2Cart\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>contact@api2cart.com<span class=\"structural\">, </span><span class=\"structural\">x-tw...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API2Cart"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://api2cart.com/terms-service"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Swagger API2Cart"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11542], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410500, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["api2cart.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11536, 11537, 11538, 11539, 11540, 11541, 11543, 11544, 11545], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:contact@api2cart.com, x-twitter:API2Cart }\ndescription: API2Cart\ntermsOfService: https://api2cart.com/terms-service\ntitle: Swagger API2Cart\nversion: 1.1\nx-apisguru-categories: [ecommerce]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://app.api2cart.com/default/inde... 3.0\n\nx-providerName: api2cart.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>co<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Find out more about API2Cart"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://docs.api2cart.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11547, 11548], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Find out more about API2Cart\nurl: http://docs.api2cart.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Find out more <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.json\">https://api.apis.guru/v2/specs/api2ca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.yaml\">https://api.apis.guru/v2/specs/api2ca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.1: DataRow\">1.1</span>", children: [11533, 11546, 11549, 11550, 11551, 11552, 11553], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T17:05:01.000Z\ninfo: { contact:{ email:contact@api2cart.com, x-twitter:API2Cart }, description:API2Cart, termsOfService:https://api2cart.com/terms-service, title:Swagger API2Cart, version:1.1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://app.api2cart.com/default/index/swagger-json, version:3.0 }, x-providerName:api2cart.com }\nexternalDocs: { description:Find out more about API2Cart, url:http://docs.api2cart.com }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T17:05:01.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11554], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.1: { added:2018-03-10T17:05:01.000Z, info:{ contact:{ email:contact@api2cart.com, x-twitter:API2Cart }, description:API2Cart, termsOfService:https://api2cart.com/terms-service, title:Swagger API2Cart, version:1.1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://app.api2cart.com/default/index/swagger-json, version:3.0 }, x-providerName:api2cart.com }, externalDocs:{ description:Find out more about API2Cart, url:http://docs.api2cart.com }, updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api2cart.com: DataRow\">api2cart.com</span>", children: [11531, 11532, 11555], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T17:05:01.000Z\npreferred: 1.1\nversions: { 1.1:{ added:2018-03-10T17:05:01.000Z, info:{ contact:{ email:contact@api2cart.com, x-twitter:API2Cart }, description:API2Cart, termsOfService:https://api2cart.com/terms-service, title:Swagger API2Cart, version:1.1, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_API2Cart_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://app.api2cart.com/default/index/swagger-json, version:3.0 }, x-providerName:api2cart.com }, externalDocs:{ description:Find out more about API2Cart, url:http://docs.api2cart.com }, updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api2cart.com/1.1/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T17:05:01.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-04T11:45:13.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-01-04T11:45:13.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@api2pdf.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Support"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["api2pdf_status"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11560, 11561, 11562], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@api2pdf.com\nname: Support\nx-twitter: api2pdf_status\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@api2pdf.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"\n# Introduction\n[Api2Pdf](https://www.api2pdf.com) is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. **Supports wkhtmltopdf, Headless Chrome, LibreOffice, and PDF Merge.** You can also generate barcodes with ZXING (Zebra Crossing).\n# SDKs & Client Libraries\nWe've made a number of open source libraries available for the API\n- Python: [https://github.com/api2pdf/api2pdf.python](https://github.com/api2pdf/api2pdf.python)\n- .NET: [https://github.com/api2pdf/api2pdf.dotnet](https://github.com/api2pdf/api2pdf.dotnet)\n- Nodejs: [https://github.com/api2pdf/api2pdf.node](https://github.com/api2pdf/api2pdf.node)\n- PHP: [https://github.com/Api2Pdf/api2pdf.php](https://github.com/Api2Pdf/api2pdf.php)\n- Ruby: (Coming soon)\n# Authorization\nCreate an account at [portal.api2pdf.com](https://portal.api2pdf.com/register) to get an API key.\n\n**Authorize your API calls**\n- GET requests, include apikey=YOUR-API-KEY as a query string parameter\n- POST requests, add **Authorization** to your header.\n``` Authorization: YOUR-API-KEY ```\n\n# Quickstart\nIf you are looking for just a quick call to grab PDFs of a URL, you can do a GET request like:\n``` https://v2018.api2pdf.com/chrome/url?url={UrlToConvert}&apikey={YourApiKey} ```\n\nFor more advanced usage and settings, see the API specification below.\n\">\n# Introduction\n[Api2Pdf](https://www<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Creative Commons"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://creativecommons.org/licenses/by/4.0/legalcode\">https://creativecommons.org/licenses/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11565, 11566], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Creative Commons\nurl: https://creativecommons.org/licenses/by/4.0/legalcode\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Creative Commons<span class=\"structural\">, </span><span class=\"structural\">url: </span>http<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Api2Pdf - PDF Generation, Powered by AWS Lambda\">Api2Pdf - PDF Generation, Powered by <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_api2pdf_status_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11571], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_api2pdf_status_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410501, value: "<b>DataFrame 1 x 4</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["api2pdf.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11563, 11564, 11567, 11568, 11569, 11570, 11572, 11573, 11574], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@api2pdf.com, name:Support, x-twitter:api2pdf_status }\ndescription: \n# Introduction\n[Api2Pdf](https://www.api2pdf.com) is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. **Supports wkhtmltopdf, Headless Chrome, LibreOffice, and PDF Merge.** You can also generate barcodes with ZXING (Zebra Crossing).\n# SDKs & Client Libraries\nWe've made a number of open source libraries available for the API\n- Python: [https://github.com/api2pdf/api2pdf.python](https://github.com/api2pdf/api2pdf.python)\n- .NET: [https://github.com/api2pdf/api2pdf.dotnet](https://github.com/api2pdf/api2pdf.dotnet)\n- Nodejs: [https://github.com/api2pdf/api2pdf.node](https://github.com/api2pdf/api2pdf.node)\n- PHP: [https://github.com/Api2Pdf/api2pdf.php](https://github.com/Api2Pdf/api2pdf.php)\n- Ruby: (Coming soon)\n# Authorization\nCreate an account at [portal.api2pdf.com](https://portal.api2pdf.com/register) to get an API key.\n\n**Authorize your API calls**\n- GET requests, include apikey=YOUR-API-KEY as a query string parameter\n- POST requests, add **Authorization** to your header.\n``` Authorization: YOUR-API-KEY ```\n\n# Quickstart\nIf you are looking for just a quick call to grab PDFs of a URL, you can do a GET request like:\n``` https://v2018.api2pdf.com/chrome/url?url={UrlToConvert}&apikey={YourApiKey} ```\n\nFor more advanced usage and settings, see the API specification below.\n\nlicense: { name:Creative Commons, url:https://creativecommons.org/licenses/by/4.0/legalcode }\ntitle: Api2Pdf - PDF Generation, Powered by AWS Lambda\nversion: 1.0.0\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_api2pdf_status_profile_image.jpeg }\nx-origin: converter format url version\n 0 { url:https://github.com/lucybot/api-... openapi https://app.swaggerhub.com/apiproxy/s... 3.0\n\nx-providerName: api2pdf.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Find out more about Api2Pdf"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.api2pdf.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11576, 11577], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Find out more about Api2Pdf\nurl: https://www.api2pdf.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Find out more <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-01-04T11:45:13.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/api2pd<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/api2pd<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [11559, 11575, 11578, 11579, 11580, 11581, 11582], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-04T11:45:13.000Z\ninfo: { contact:{ email:support@api2pdf.com, name:Support, x-twitter:api2pdf_status }, description:\n# Introduction\n[Api2Pdf](https://www.api2pdf.com) is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. **Supports wkhtmltopdf, Headless Chrome, LibreOffice, and PDF Merge.** You can also generate barcodes with ZXING (Zebra Crossing).\n# SDKs & Client Libraries\nWe've made a number of open source libraries available for the API\n- Python: [https://github.com/api2pdf/api2pdf.python](https://github.com/api2pdf/api2pdf.python)\n- .NET: [https://github.com/api2pdf/api2pdf.dotnet](https://github.com/api2pdf/api2pdf.dotnet)\n- Nodejs: [https://github.com/api2pdf/api2pdf.node](https://github.com/api2pdf/api2pdf.node)\n- PHP: [https://github.com/Api2Pdf/api2pdf.php](https://github.com/Api2Pdf/api2pdf.php)\n- Ruby: (Coming soon)\n# Authorization\nCreate an account at [portal.api2pdf.com](https://portal.api2pdf.com/register)..., license:{ name:Creative Commons, url:https://creativecommons.org/licenses/by/4.0/legalcode }, title:Api2Pdf - PDF Generation, Powered by AWS Lambda, version:1.0.0, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_api2pdf_status_profile_image.jpeg }, x-origin:[1 x 4] { converter:{ url:https://github.com/lucybot/api-spec-converter, version:2.7.18 }, format:openapi, url:https://app.swaggerhub.com/apiproxy/schema/file/api2pdf/api2pdf/1.0.0/swagger.json, version:3.0 }, x-providerName:api2pdf.com }\nexternalDocs: { description:Find out more about Api2Pdf, url:https://www.api2pdf.com }\nupdated: 2019-01-04T11:45:13.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-04T11:45:13.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11583], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2019-01-04T11:45:13.000Z, info:{ contact:{ email:support@api2pdf.com, name:Support, x-twitter:api2pdf_status }, description:\n# Introduction\n[Api2Pdf](https://www.api2pdf.com) is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. **Supports wkhtmltopdf, Headless Chrome, LibreOffice, and PDF Merge.** You can also generate barcodes with ZXING (Zebra Crossing).\n# SDKs & Client Libraries\nWe've made a number of open source libraries available for the API\n- Python: [https://github.com/api2pdf/api2pdf.python](https://github.com/api2pdf/api2pdf.python)\n- .NET: [https://github.com/api2pdf/api2pdf.dotnet](https://github.com/api2pdf/api2pdf.dotnet)\n- Nodejs: [https://github.com/api2pdf/api2pdf.node](https://github.com/api2pdf/api2pdf.node)\n- PHP: [https://github.com/Api2Pdf/api2pdf.php](https://github.com/Api2Pdf/api2pdf.php)\n- Ruby: (Comin..., externalDocs:{ description:Find out more about Api2Pdf, url:https://www.api2pdf.com }, updated:2019-01-04T11:45:13.000Z, swaggerUrl:https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/api2pdf.com/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"api2pdf.com: DataRow\">api2pdf.com</span>", children: [11557, 11558, 11584], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-01-04T11:45:13.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2019-01-04T11:45:13.000Z, info:{ contact:{ email:support@api2pdf.com, name:Support, x-twitter:api2pdf_status }, description:\n# Introduction\n[Api2Pdf](https://www.api2pdf.com) is a powerful PDF generation API with no rate limits or file size constraints. Api2Pdf runs on AWS Lambda, a serverless architecture powered by Amazon to scale to millions of requests while being up to 90% cheaper than alternatives. **Supports wkhtmltopdf, Headless Chrome, LibreOffice, and PDF Merge.** You can also generate barcodes with ZXING (Zebra Crossing).\n# SDKs & Client Libraries\nWe've made a number of open source libraries available for the API\n- Python: [https://github.com/api2pdf/api2pdf.python](https://github.com/api2pdf/api2pdf.python)\n- .NET: [https://github.com/api2pdf/api2pdf.dotnet](https://github.com/api2pdf/api2pdf.dotnet)\n- Nodejs: [https://github.com/api2pdf/api2pdf.node](https://github.com/api2pdf/api2pdf.node)\n- PHP: [https://github.com/Api2Pdf/api2pdf.php](https://github.c... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-01-04T11:45:13.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-03T14:16:23.731Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.1.0-SNAPSHOT"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-03T14:16:23.731Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["apicurio@lists.jboss.org"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apicurio"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://github.com/apicurio/apicurio-registry\">https://github.com/apicurio/apicurio-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11589, 11590, 11591], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: apicurio@lists.jboss.org\nname: Apicurio\nurl: https://github.com/apicurio/apicurio-registry\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>apicurio@lists.jboss.org<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility.\n\nThe Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. \n\nThe supported artifact types include:\n- Apache Avro schema\n- AsyncAPI specification\n- Google protocol buffers\n- GraphQL schema\n- JSON Schema\n- Kafka Connect schema\n- OpenAPI specification\n- Web Services Description Language\n- XML Schema Definition\n\n\n**Important**: The Apicurio Registry REST API is available from `https://MY-REGISTRY-URL/apis/registry/v2` by default. Therefore you must prefix all API operation paths with `../apis/registry/v2` in this case. For example: `../apis/registry/v2/ids/globalIds/{globalId}`.\n\">Apicurio Registry is a datastore for <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.apache.org/licenses/LICENSE-2.0\">https://www.apache.org/licenses/LICEN<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11594, 11595], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: https://www.apache.org/licenses/LICENSE-2.0\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://ww<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Apicurio Registry API [v2]"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.1.0-SNAPSHOT"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410502, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apicurio.local"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["registry"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11604], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11592, 11593, 11596, 11597, 11598, 11599, 11600, 11601, 11602, 11603, 11605], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:apicurio@lists.jboss.org, name:Apicurio, url:https://github.com/apicurio/apicurio-registry }\ndescription: Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility.\n\nThe Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. \n\nThe supported artifact types include:\n- Apache Avro schema\n- AsyncAPI specification\n- Google protocol buffers\n- GraphQL schema\n- JSON Schema\n- Kafka Connect schema\n- OpenAPI specification\n- Web Services Description Language\n- XML Schema Definition\n\n\n**Important**: The Apicurio Registry REST API is available from `https://MY-REGISTRY-URL/apis/registry/v2` by default. Therefore you must prefix all API operation paths with `../apis/registry/v2` in this case. For example: `../apis/registry/v2/ids/globalIds/{globalId}`.\n\nlicense: { name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }\ntitle: Apicurio Registry API [v2]\nversion: 2.1.0-SNAPSHOT\nx-apisguru-categories: [developer_tools]\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Api... 3.0\n\nx-preferred: true\nx-providerName: apicurio.local\nx-serviceName: registry\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>api<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-02T08:20:08.766Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.json\">https://api.apis.guru/v2/specs/apicur<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.yaml\">https://api.apis.guru/v2/specs/apicur<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"2.1.0-SNAPSHOT: DataRow\">2.1.0-SNAPSHOT</span>", children: [11588, 11606, 11607, 11608, 11609, 11610], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-03T14:16:23.731Z\ninfo: { contact:{ email:apicurio@lists.jboss.org, name:Apicurio, url:https://github.com/apicurio/apicurio-registry }, description:Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility.\n\nThe Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. \n\nThe supported artifact types include:\n- Apache Avro schema\n- AsyncAPI specification\n- Google protocol buffers\n- GraphQL schema\n- JSON Schema\n- Kafka Connect schema\n- OpenAPI specification\n- Web Services Description Language\n- XML Schema Definition\n\n\n**Imp..., license:{ name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }, title:Apicurio Registry API [v2], version:2.1.0-SNAPSHOT, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Apicurio/apicurio-registry/master/app/src/main/resources-unfiltered/META-INF/resources/api-specifications/registry/v2/openapi.json, version:3.0 }, x-preferred:true, x-providerName:apicurio.local, x-serviceName:registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-08-02T08:20:08.766Z\nswaggerUrl: https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-03T14:16:23.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11611], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.1.0-SNAPSHOT: { added:2021-02-03T14:16:23.731Z, info:{ contact:{ email:apicurio@lists.jboss.org, name:Apicurio, url:https://github.com/apicurio/apicurio-registry }, description:Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility.\n\nThe Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. \n\nThe supported artifact types include:\n- Apache Avro schema\n- AsyncAPI specification\n- Google protocol buffers\n- GraphQL sch..., updated:2021-08-02T08:20:08.766Z, swaggerUrl:https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apicurio.local/registry/2.1.0-SNAPSHOT/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.1.0-SNAPSHOT: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apicurio.local:registry: DataRow\">apicurio.local:registry</span>", children: [11586, 11587, 11612], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-03T14:16:23.731Z\npreferred: 2.1.0-SNAPSHOT\nversions: { 2.1.0-SNAPSHOT:{ added:2021-02-03T14:16:23.731Z, info:{ contact:{ email:apicurio@lists.jboss.org, name:Apicurio, url:https://github.com/apicurio/apicurio-registry }, description:Apicurio Registry is a datastore for standard event schemas and API designs. Apicurio Registry enables developers to manage and share the structure of their data using a REST interface. For example, client applications can dynamically push or pull the latest updates to or from the registry without needing to redeploy. Apicurio Registry also enables developers to create rules that govern how registry content can evolve over time. For example, this includes rules for content validation and version compatibility.\n\nThe Apicurio Registry REST API enables client applications to manage the artifacts in the registry. This API provides create, read, update, and delete operations for schema and API artifacts, rules, versions, and metadata. \n\nThe supported artifact types include:\n- Apache Avro schema\n- AsyncAPI specification\n-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-03T14:16:23.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-23T13:57:32.889Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-02-14T164701Z"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-23T13:57:32.889Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["api_dapp"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11617], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: api_dapp\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>api_dapp<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiDapp"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-02-14T16:47:01Z"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"financial\"><span class=\"structural\">[</span>financial<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11622], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410503, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apidapp.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11618, 11619, 11620, 11621, 11623, 11624, 11625], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:api_dapp }\ntitle: ApiDapp\nversion: 2019-02-14T16:47:01Z\nx-apisguru-categories: [financial]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png }\nx-origin: format url version\n 0 openapi https://apidapp.s3.amazonaws.com/ApiD... 3.0\n\nx-providerName: apidapp.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>api_<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-07-19T09:27:57.385Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.json\">https://api.apis.guru/v2/specs/apidap<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.yaml\">https://api.apis.guru/v2/specs/apidap<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2019-02-14T164701Z: DataRow\">2019-02-14T164701Z</span>", children: [11616, 11626, 11627, 11628, 11629, 11630], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-23T13:57:32.889Z\ninfo: { contact:{ x-twitter:api_dapp }, title:ApiDapp, version:2019-02-14T16:47:01Z, x-apisguru-categories:[financial], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png }, x-origin:[1 x 3] { format:openapi, url:https://apidapp.s3.amazonaws.com/ApiDapp-Start-swagger-7/ApiDapp-Start-swagger+(7).json, version:3.0 }, x-providerName:apidapp.com }\nupdated: 2021-07-19T09:27:57.385Z\nswaggerUrl: https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-23T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11631], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-02-14T164701Z: { added:2020-03-23T13:57:32.889Z, info:{ contact:{ x-twitter:api_dapp }, title:ApiDapp, version:2019-02-14T16:47:01Z, x-apisguru-categories:[financial], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png }, x-origin:[1 x 3] { format:openapi, url:https://apidapp.s3.amazonaws.com/ApiDapp-Start-swagger-7/ApiDapp-Start-swagger+(7).json, version:3.0 }, x-providerName:apidapp.com }, updated:2021-07-19T09:27:57.385Z, swaggerUrl:https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-02-14T164701Z: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apidapp.com: DataRow\">apidapp.com</span>", children: [11614, 11615, 11632], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-23T13:57:32.889Z\npreferred: 2019-02-14T164701Z\nversions: { 2019-02-14T164701Z:{ added:2020-03-23T13:57:32.889Z, info:{ contact:{ x-twitter:api_dapp }, title:ApiDapp, version:2019-02-14T16:47:01Z, x-apisguru-categories:[financial], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_i2.wp.com_apidapp.com_wp-content_uploads_2019_03_cropped-ApiDappIcon.png }, x-origin:[1 x 3] { format:openapi, url:https://apidapp.s3.amazonaws.com/ApiDapp-Start-swagger-7/ApiDapp-Start-swagger+(7).json, version:3.0 }, x-providerName:apidapp.com }, updated:2021-07-19T09:27:57.385Z, swaggerUrl:https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apidapp.com/2019-02-14T164701Z/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-23T13:57:32.889Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T23:15:25.003Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T23:15:25.003Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11637, 11638], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Accounting API.\n\nYou can use this API to access all Accounting API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Accounting API.\n\nYou c<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11641, 11642], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Accounting API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["accounting"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11649], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410504, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["accounting"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11639, 11640, 11643, 11644, 11645, 11646, 11647, 11648, 11650, 11651, 11652, 11653, 11654], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Accounting API.\n\nYou can use this API to access all Accounting API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Accounting API\nversion: 8.86.0\nx-apideck-api: accounting\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: accounting\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11656, 11657], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11636, 11655, 11658, 11659, 11660, 11661, 11662], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T23:15:25.003Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Accounting API.\n\nYou can use this API to access all Accounting API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -----------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Accounting API, version:8.86.0, x-apideck-api:accounting, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/accounting.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:accounting, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T23:15:25.003Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11663], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-08-12T23:15:25.003Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Accounting API.\n\nYou can use this API to access all Accounting API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/accounting/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:accounting: DataRow\">apideck.com:accounting</span>", children: [11634, 11635, 11664], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T23:15:25.003Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-08-12T23:15:25.003Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Accounting API.\n\nYou can use this API to access all Accounting API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | ---... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T23:15:25.003Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:35:34.920Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:35:34.920Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11669, 11670], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the CRM API.\n\nYou can use this API to access all CRM API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the CRM API.\n\nYou can use <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11673, 11674], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["CRM API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["crm"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11681], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410505, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["crm"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11671, 11672, 11675, 11676, 11677, 11678, 11679, 11680, 11682, 11683, 11684, 11685, 11686], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the CRM API.\n\nYou can use this API to access all CRM API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: CRM API\nversion: 8.86.0\nx-apideck-api: crm\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: crm\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11688, 11689], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11668, 11687, 11690, 11691, 11692, 11693, 11694], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:35:34.920Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the CRM API.\n\nYou can use this API to access all CRM API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:CRM API, version:8.86.0, x-apideck-api:crm, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/crm.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:crm, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:35:34.920Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11695], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-02-04T07:35:34.920Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the CRM API.\n\nYou can use this API to access all CRM API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/crm/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:crm: DataRow\">apideck.com:crm</span>", children: [11666, 11667, 11696], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:35:34.920Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-02-04T07:35:34.920Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the CRM API.\n\nYou can use this API to access all CRM API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ------... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:35:34.920Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:36:34.344Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:36:34.344Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11701, 11702], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Lead API.\n\nYou can use this API to access all Lead API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Lead API.\n\nYou can use<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11705, 11706], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Lead API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["lead"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11713], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410506, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lead"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11703, 11704, 11707, 11708, 11709, 11710, 11711, 11712, 11714, 11715, 11716, 11717, 11718], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Lead API.\n\nYou can use this API to access all Lead API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Lead API\nversion: 8.86.0\nx-apideck-api: lead\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: lead\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11720, 11721], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11700, 11719, 11722, 11723, 11724, 11725, 11726], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:36:34.344Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Lead API.\n\nYou can use this API to access all Lead API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -----------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Lead API, version:8.86.0, x-apideck-api:lead, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/lead.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:lead, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:36:34.344Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11727], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-02-04T07:36:34.344Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Lead API.\n\nYou can use this API to access all Lead API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/lead/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:lead: DataRow\">apideck.com:lead</span>", children: [11698, 11699, 11728], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:36:34.344Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-02-04T07:36:34.344Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Lead API.\n\nYou can use this API to access all Lead API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ----... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:36:34.344Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-10T07:57:59.185Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-10T07:57:59.185Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11733, 11734], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Proxy API.\n\nYou can use this API to access all Proxy API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| ---------------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| Authorization | String | Yes | Bearer API KEY |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-downstream-url | String | Yes | Downstream URL to forward the request too |\n| x-apideck-downstream-authorization | String | No | Downstream authorization header. This will skip the Vault token injection. |\n| x-apideck-downstream-method | String | No | Downstream method. If not provided the upstream method will be inherited, depending on the verb/method of the request this will contain the request body you want to POST/PATCH/PUT. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n### apiKey\n\nTo use API you have to sign up and get your own API key. Unify API accounts have sandbox mode and live mode API keys. To change modes just use the appropriate key to get a live or test object. You can find your API keys on the unify settings of your Apideck app. Your Apideck application_id can also be found on the same page.\n\nAuthenticate your API requests by including your test or live secret API key in the request header.\n\n- Bearer authorization header: Authorization: Bearer <your-apideck-api-key>\n- Application id header: x-apideck-app-id: <your-apideck-app-id>\n You should use the public keys on the SDKs and the secret keys to authenticate API requests.\n\n**Do not share or include your secret API keys on client side code.** Your API keys carry significant privileges. Please ensure to keep them 100% secure and be sure to not share your secret API keys in areas that are publicly accessible like GitHub.\n\nLearn how to set the Authorization header inside Postman https://learning.postman.com/docs/postman/sending-api-requests/authorization/#api-key\n\nGo to Unify to grab your API KEY https://app.apideck.com/unify/api-keys\n\n| Security Scheme Type | HTTP |\n| ------------------------- | ------ |\n| HTTP Authorization Scheme | bearer |\n\n### applicationId\n\nThe ID of your Unify application\n\n| Security Scheme Type | API Key |\n| --------------------- | ---------------- |\n| Header parameter name | x-apideck-app-id |\n\n## Static IP\n\nSome of the APIs you want to use can require a static IP. Apideck's static IP feature allows you to the Proxy API with a fixed IP avoiding the need for you to set up your own infrastructure. This feature is currently available to all Apideck customers.\nTo use this feature, the API Vendor will need to whitelist the associated static IP addresses.\nThe provided static IP addresses are fixed to their specified region and shared by all customers who use this feature.\n\n- EU Central 1: **18.197.244.247**\n- Other: upcoming\n\n More info about our data security can be found at [https://compliance.apideck.com/](https://compliance.apideck.com/)\n\n## Limitations\n\n### Timeout\n\nThe request timeout is set at 30 seconds.\n\n### Response Size\n\nThe Proxy API has no response size limit. For responses larger than 2MB, the Proxy API will redirect to a temporary URL. In this case the usual Apideck response headers will be returned in the redirect response. Most HTTP clients will handle this redirect automatically.\n\n```\nGET /proxy\n< 301 Moved Permanently\n< x-apideck-request-id: {{requestId}}\n< Location: {{temporaryUrl}}\n\nGET {{temporaryUrl}}\n< {{responseBody}}\n```\n\n## SDKs and API Clients\n\nUpcoming. [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later. |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Proxy API.\n\nYou can us<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11737, 11738], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Proxy API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["proxy"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11744], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410507, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["proxy"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11735, 11736, 11739, 11740, 11741, 11742, 11743, 11745, 11746, 11747, 11748, 11749], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Proxy API.\n\nYou can use this API to access all Proxy API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| ---------------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| Authorization | String | Yes | Bearer API KEY |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-downstream-url | String | Yes | Downstream URL to forward the request too |\n| x-apideck-downstream-authorization | String | No | Downstream authorization header. This will skip the Vault token injection. |\n| x-apideck-downstream-method | String | No | Downstream method. If not provided the upstream method will be inherited, depending on the verb/method of the request this will contain the request body you want to POST/PATCH/PUT. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n### apiKey\n\nTo use API you have to sign up and get your own API key. Unify API accounts have sandbox mode and live mode API keys. To change modes just use the appropriate key to get a live or test object. You can find your API keys on the unify settings of your Apideck app. Your Apideck application_id can also be found on the same page.\n\nAuthenticate your API requests by including your test or live secret API key in the request header.\n\n- Bearer authorization header: Authorization: Bearer <your-apideck-api-key>\n- Application id header: x-apideck-app-id: <your-apideck-app-id>\n You should use the public keys on the SDKs and the secret keys to authenticate API requests.\n\n**Do not share or include your secret API keys on client side code.** Your API keys carry significant privileges. Please ensure to keep them 100% secure and be sure to not share your secret API keys in areas that are publicly accessible like GitHub.\n\nLearn how to set the Authorization header inside Postman https://learning.postman.com/docs/postman/sending-api-requests/authorization/#api-key\n\nGo to Unify to grab your API KEY https://app.apideck.com/unify/api-keys\n\n| Security Scheme Type | HTTP |\n| ------------------------- | ------ |\n| HTTP Authorization Scheme | bearer |\n\n### applicationId\n\nThe ID of your Unify application\n\n| Security Scheme Type | API Key |\n| --------------------- | ---------------- |\n| Header parameter name | x-apideck-app-id |\n\n## Static IP\n\nSome of the APIs you want to use can require a static IP. Apideck's static IP feature allows you to the Proxy API with a fixed IP avoiding the need for you to set up your own infrastructure. This feature is currently available to all Apideck customers.\nTo use this feature, the API Vendor will need to whitelist the associated static IP addresses.\nThe provided static IP addresses are fixed to their specified region and shared by all customers who use this feature.\n\n- EU Central 1: **18.197.244.247**\n- Other: upcoming\n\n More info about our data security can be found at [https://compliance.apideck.com/](https://compliance.apideck.com/)\n\n## Limitations\n\n### Timeout\n\nThe request timeout is set at 30 seconds.\n\n### Response Size\n\nThe Proxy API has no response size limit. For responses larger than 2MB, the Proxy API will redirect to a temporary URL. In this case the usual Apideck response headers will be returned in the redirect response. Most HTTP clients will handle this redirect automatically.\n\n```\nGET /proxy\n< 301 Moved Permanently\n< x-apideck-request-id: {{requestId}}\n< Location: {{temporaryUrl}}\n\nGET {{temporaryUrl}}\n< {{responseBody}}\n```\n\n## SDKs and API Clients\n\nUpcoming. [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later. |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Proxy API\nversion: 8.86.0\nx-apideck-api: proxy\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: proxy\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11751, 11752], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11732, 11750, 11753, 11754, 11755, 11756, 11757], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-10T07:57:59.185Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Proxy API.\n\nYou can use this API to access all Proxy API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| ---------------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| Authorization | String | Yes | Bearer API KEY |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. Thi..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Proxy API, version:8.86.0, x-apideck-api:proxy, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/proxy.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:proxy, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-10T07:57:59.185Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11758], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-06-10T07:57:59.185Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Proxy API.\n\nYou can use this API to access all Proxy API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| ---------------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| Authorization | String | Yes | Bearer API KEY |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| x-apideck..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/proxy/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:proxy: DataRow\">apideck.com:proxy</span>", children: [11730, 11731, 11759], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-10T07:57:59.185Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-06-10T07:57:59.185Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Proxy API.\n\nYou can use this API to access all Proxy API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| ---------------------------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| Authorization | String | Yes | Bearer API KEY |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.api... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-10T07:57:59.185Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:55:37.447Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:55:37.447Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11764, 11765], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Vault API ��\n\nWhen you're looking to connect to an API, the first step is authentication.\n\nVault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck).\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Get Started\n\nTo use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started.\n\n- [Create a free account.](https://app.apideck.com/signup)\n- Go to the [Dashboard](https://app.apideck.com/unify/unified-apis/dashboard).\n- Get your API key and the application ID.\n- Select and configure the integrations you want to make available to your users. Through the Unify dashboard, you can configure which connectors you want to support as integrations.\n- Retrieve the client_id and client_secret for the integration you want to activate (Only needed for OAuth integrations).\n- Soon, you can skip the previous step and use the Apideck sandbox credentials to get you started instead (upcoming)\n- Register the redirect URI for the example app (https://unify.apideck.com/vault/callback) in the list of redirect URIs under your app's settings\n- Use the [publishing guides](/app-listing-requirements) to get your integration listed across app marketplaces.\n\n### Hosted Vault\n\nHosted Vault (vault.apideck.com) is a no-code solution, so you don't need to build your own UI to handle the integration settings and authentication.\n\n\n\nBehind the scenes, Hosted Vault implements the Vault API endpoints and handles the following features for your customers:\n\n- Add a connection\n- Handle the OAuth flow\n- Configure connection settings per integration\n- Manage connections\n- Discover and propose integration options\n- Search for integrations (upcoming)\n- Give integration suggestions based on provided metadata (email or website) when creating the session (upcoming)\n\nTo use Hosted Vault, you will need to first [**create a session**](https://developers.apideck.com/apis/vault/reference#operation/sessionsCreate). This can be achieved by making a POST request to the Vault API to create a valid session for a user, hereafter referred to as the consumer ID.\n\nExample using curl:\n\n```\ncurl -X POST https://unify.apideck.com/vault/sessions\n -H "Content-Type: application/json"\n -H "Authorization: Bearer <your-api-key>"\n -H "X-APIDECK-CONSUMER-ID: <consumer-id>"\n -H "X-APIDECK-APP-ID: <application-id>"\n -d '{"consumer_metadata": { "account_name" : "Sample", "user_name": "Sand Box", "email": "sand@box.com", "image": "https://unavatar.now.sh/jake" }, "theme": { "vault_name": "Intercom", "primary_color": "#286efa", "sidepanel_background_color": "#286efa","sidepanel_text_color": "#FFFFFF", "favicon": "https://res.cloudinary.com/apideck/icons/intercom" }}'\n```\n\n### Vault API\n\n_Beware, this is strategy takes more time to implement in comparison to Hosted Vault._\n\nIf you are building your integration settings UI manually, you can call the Vault API directly.\n\nThe Vault API is for those who want to completely white label the in-app integrations overview and authentication experience. All the available endpoints are listed below.\n\nThrough the API, your customers authenticate directly in your app, where Vault will still take care of redirecting to the auth provider and back to your app.\n\nIf you're already storing access tokens, we will help you migrate through our Vault Migration API (upcoming).\n\n## Domain model\n\nAt its core, a domain model creates a web of interconnected entities.\n\nOur domain model contains five main entity types: Consumer (user, account, team, machine), Application, Connector, Integration, and Connection.\n\n## Connection state\n\nThe connection state is computed based on the connection flow below.\n\n\n\n## Unify and Proxy integration\n\nThe only thing you need to use the Unify APIs and Proxy is the consumer id; thereafter, Vault will do the look-up in the background to handle the token injection before performing the API call(s).\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-app-id | String | Yes | The id of your Unify application. Available at https://app.apideck.com/api-keys. |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n\n## Sandbox (upcoming)\n\nThe sandbox is pre-loaded with data similar to a real-life integrations setup. You can use the preconfigured OAauth configured connectors for testing purposes and can skip this step by using the Apideck sandbox credentials to get you started.\n\n## Guides\n\n- [How to build an integrations UI with Vault](https://github.com/apideck-samples/integration-settings)\n- How to configure the OAuth credentials for integration providers (COMING SOON)\n\n## FAQ\n\n**What purpose does Vault serve? Can I just handle the authentication and access token myself?**\nYou can store everything yourself, but that defeats the purpose of using Apideck Unify. Handling tokens for multiple providers can quickly become very complex.\n\n### Is my data secure?\n\nVault employs data minimization, therefore only requesting the minimum amount of scopes needed to perform an API request.\n\n### How do I migrate existing data?\n\nUsing our migration API, you can migrate the access tokens and accounts to Apideck Vault. (COMING SOON)\n\n### Can I use Vault in combination with existing integrations?\n\nYes, you can. The flexibility of Unify allows you to quickly the use cases you need while keeping a gradual migration path based on your timeline and requirements.\n\n### How does Vault work for Apideck Ecosystem customers?\n\nOnce logged in, pick your ecosystem; on the left-hand side of the screen, you'll have the option to create an application underneath the Unify section.\n\n### How to integrate Apideck Vault\n\nThis section covers everything you need to know to authenticate your customers through Vault.\nVault provides **three auth strategies** to use API tokens from your customers:\n\n- Vault API\n- Hosted Vault\n- Apideck Ecosystem _(COMING SOON)_\n\nYou can also opt to bypass Vault and still take care of authentication flows yourself. Make sure to put the right safeguards in place to protect your customers' tokens and other sensitive data.\n\n### What auth types does Vault support?\n\nWhat auth strategies does Vault handle? We currently support three flows so your customers can activate an integration.\n\n#### API keys\n\nFor Services supporting the API key strategy, you can use Hosted Vault will need to provide an in-app form where users can configure their API keys provided by the integration service.\n\n#### OAuth 2.0\n\n##### Authorization Code Grant Type Flow\n\nVault handles the complete Authorization Code Grant Type Flow for you. This flow only supports browser-based (passive) authentication because most identity providers don't allow entering a username and password to be entered into applications that they don't own.\n\nCertain connectors require an OAuth redirect authentication flow, where the end-user is redirected to the provider's website or mobile app to authenticate.\n\nThis is being handled by the `/authorize` endpoint.\n\n#### Basic auth\n\nBasic authentication is a simple authentication scheme built into the HTTP protocol. The required fields to complete basic auth are handled by Hosted Vault or by updating the connection through the Vault API below.\n\n\">Welcome to the Vault API ��\n\nWhen you<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11768, 11769], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Vault API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["vault"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11776], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410508, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["vault"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11766, 11767, 11770, 11771, 11772, 11773, 11774, 11775, 11777, 11778, 11779, 11780, 11781], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Vault API ��\n\nWhen you're looking to connect to an API, the first step is authentication.\n\nVault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck).\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Get Started\n\nTo use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started.\n\n- [Create a free account.](https://app.apideck.com/signup)\n- Go to the [Dashboard](https://app.apideck.com/unify/unified-apis/dashboard).\n- Get your API key and the application ID.\n- Select and configure the integrations you want to make available to your users. Through the Unify dashboard, you can configure which connectors you want to support as integrations.\n- Retrieve the client_id and client_secret for the integration you want to activate (Only needed for OAuth integrations).\n- Soon, you can skip the previous step and use the Apideck sandbox credentials to get you started instead (upcoming)\n- Register the redirect URI for the example app (https://unify.apideck.com/vault/callback) in the list of redirect URIs under your app's settings\n- Use the [publishing guides](/app-listing-requirements) to get your integration listed across app marketplaces.\n\n### Hosted Vault\n\nHosted Vault (vault.apideck.com) is a no-code solution, so you don't need to build your own UI to handle the integration settings and authentication.\n\n\n\nBehind the scenes, Hosted Vault implements the Vault API endpoints and handles the following features for your customers:\n\n- Add a connection\n- Handle the OAuth flow\n- Configure connection settings per integration\n- Manage connections\n- Discover and propose integration options\n- Search for integrations (upcoming)\n- Give integration suggestions based on provided metadata (email or website) when creating the session (upcoming)\n\nTo use Hosted Vault, you will need to first [**create a session**](https://developers.apideck.com/apis/vault/reference#operation/sessionsCreate). This can be achieved by making a POST request to the Vault API to create a valid session for a user, hereafter referred to as the consumer ID.\n\nExample using curl:\n\n```\ncurl -X POST https://unify.apideck.com/vault/sessions\n -H "Content-Type: application/json"\n -H "Authorization: Bearer <your-api-key>"\n -H "X-APIDECK-CONSUMER-ID: <consumer-id>"\n -H "X-APIDECK-APP-ID: <application-id>"\n -d '{"consumer_metadata": { "account_name" : "Sample", "user_name": "Sand Box", "email": "sand@box.com", "image": "https://unavatar.now.sh/jake" }, "theme": { "vault_name": "Intercom", "primary_color": "#286efa", "sidepanel_background_color": "#286efa","sidepanel_text_color": "#FFFFFF", "favicon": "https://res.cloudinary.com/apideck/icons/intercom" }}'\n```\n\n### Vault API\n\n_Beware, this is strategy takes more time to implement in comparison to Hosted Vault._\n\nIf you are building your integration settings UI manually, you can call the Vault API directly.\n\nThe Vault API is for those who want to completely white label the in-app integrations overview and authentication experience. All the available endpoints are listed below.\n\nThrough the API, your customers authenticate directly in your app, where Vault will still take care of redirecting to the auth provider and back to your app.\n\nIf you're already storing access tokens, we will help you migrate through our Vault Migration API (upcoming).\n\n## Domain model\n\nAt its core, a domain model creates a web of interconnected entities.\n\nOur domain model contains five main entity types: Consumer (user, account, team, machine), Application, Connector, Integration, and Connection.\n\n## Connection state\n\nThe connection state is computed based on the connection flow below.\n\n\n\n## Unify and Proxy integration\n\nThe only thing you need to use the Unify APIs and Proxy is the consumer id; thereafter, Vault will do the look-up in the background to handle the token injection before performing the API call(s).\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-app-id | String | Yes | The id of your Unify application. Available at https://app.apideck.com/api-keys. |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n\n## Sandbox (upcoming)\n\nThe sandbox is pre-loaded with data similar to a real-life integrations setup. You can use the preconfigured OAauth configured connectors for testing purposes and can skip this step by using the Apideck sandbox credentials to get you started.\n\n## Guides\n\n- [How to build an integrations UI with Vault](https://github.com/apideck-samples/integration-settings)\n- How to configure the OAuth credentials for integration providers (COMING SOON)\n\n## FAQ\n\n**What purpose does Vault serve? Can I just handle the authentication and access token myself?**\nYou can store everything yourself, but that defeats the purpose of using Apideck Unify. Handling tokens for multiple providers can quickly become very complex.\n\n### Is my data secure?\n\nVault employs data minimization, therefore only requesting the minimum amount of scopes needed to perform an API request.\n\n### How do I migrate existing data?\n\nUsing our migration API, you can migrate the access tokens and accounts to Apideck Vault. (COMING SOON)\n\n### Can I use Vault in combination with existing integrations?\n\nYes, you can. The flexibility of Unify allows you to quickly the use cases you need while keeping a gradual migration path based on your timeline and requirements.\n\n### How does Vault work for Apideck Ecosystem customers?\n\nOnce logged in, pick your ecosystem; on the left-hand side of the screen, you'll have the option to create an application underneath the Unify section.\n\n### How to integrate Apideck Vault\n\nThis section covers everything you need to know to authenticate your customers through Vault.\nVault provides **three auth strategies** to use API tokens from your customers:\n\n- Vault API\n- Hosted Vault\n- Apideck Ecosystem _(COMING SOON)_\n\nYou can also opt to bypass Vault and still take care of authentication flows yourself. Make sure to put the right safeguards in place to protect your customers' tokens and other sensitive data.\n\n### What auth types does Vault support?\n\nWhat auth strategies does Vault handle? We currently support three flows so your customers can activate an integration.\n\n#### API keys\n\nFor Services supporting the API key strategy, you can use Hosted Vault will need to provide an in-app form where users can configure their API keys provided by the integration service.\n\n#### OAuth 2.0\n\n##### Authorization Code Grant Type Flow\n\nVault handles the complete Authorization Code Grant Type Flow for you. This flow only supports browser-based (passive) authentication because most identity providers don't allow entering a username and password to be entered into applications that they don't own.\n\nCertain connectors require an OAuth redirect authentication flow, where the end-user is redirected to the provider's website or mobile app to authenticate.\n\nThis is being handled by the `/authorize` endpoint.\n\n#### Basic auth\n\nBasic authentication is a simple authentication scheme built into the HTTP protocol. The required fields to complete basic auth are handled by Hosted Vault or by updating the connection through the Vault API below.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Vault API\nversion: 8.86.0\nx-apideck-api: vault\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: vault\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11783, 11784], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11763, 11782, 11785, 11786, 11787, 11788, 11789], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:55:37.447Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Vault API ��\n\nWhen you're looking to connect to an API, the first step is authentication.\n\nVault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck).\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Get Started\n\nTo use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started.\n\n- [Create a free account.](https://app.apideck.com/signup)\n- Go to the [Dashboard](https://app.apideck.com/unify/unified-apis/dashboard).\n- Get your API key and the application ID.\n- Select and configure the integrations you want to make available to your users. Through the Unify dashboard, you can configure which connectors you want to support as integrations.\n- Retrieve the client_id and client_secret for the integration you want to activate (Only needed for OAuth integrations).\n- Soon, you can skip the previous step and use the Apide..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Vault API, version:8.86.0, x-apideck-api:vault, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/vault.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:vault, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:55:37.447Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11790], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-02-04T07:55:37.447Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Vault API ��\n\nWhen you're looking to connect to an API, the first step is authentication.\n\nVault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck).\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Get Started\n\nTo use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started.\n\n- [Create a free account.](https://app.apideck.com/signup)\n- Go to the [Dashboard](https://app.apideck.com/unify/unified-apis/dashboard).\n- Get your API key and the application ID.\n- Select and configure the integrations you want to make available to your users. Through the Unify dashboard, you can configure which connectors you want to support as integrations.\n- Retrieve the client_id and client_secret for the integration you want t..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/vault/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:vault: DataRow\">apideck.com:vault</span>", children: [11761, 11762, 11791], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:55:37.447Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-02-04T07:55:37.447Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Vault API ��\n\nWhen you're looking to connect to an API, the first step is authentication.\n\nVault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck).\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\n## Get Started\n\nTo use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started.\n\n- [Create a free account.](https://app.apideck.com/signup)\n- Go to the [Dashboard](https://app.apideck.com/unify/unified-apis/dashboard).\n- Get your API key and the application ID.\n- Select and configure the integrations you want to make available to your users. Through the Unify dashboard, you can configure which connectors you want to support as integrations.\n- Retrieve the client_id and clien... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:55:37.447Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-31T23:19:35.735Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-31T23:19:35.735Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11796, 11797], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the File Storage API.\n\nYou can use this API to access all File Storage API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the File Storage API.\n\nYou<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11800, 11801], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["File storage API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["file-storage"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11808], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410509, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["file-storage"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11798, 11799, 11802, 11803, 11804, 11805, 11806, 11807, 11809, 11810, 11811, 11812, 11813], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the File Storage API.\n\nYou can use this API to access all File Storage API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: File storage API\nversion: 8.86.0\nx-apideck-api: file-storage\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: file-storage\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11815, 11816], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11795, 11814, 11817, 11818, 11819, 11820, 11821], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-31T23:19:35.735Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the File Storage API.\n\nYou can use this API to access all File Storage API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:File storage API, version:8.86.0, x-apideck-api:file-storage, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/file-storage.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:file-storage, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-31T23:19:35.735Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11822], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-08-31T23:19:35.735Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the File Storage API.\n\nYou can use this API to access all File Storage API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/file-storage/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:file-storage: DataRow\">apideck.com:file-storage</span>", children: [11793, 11794, 11823], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-31T23:19:35.735Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-08-31T23:19:35.735Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the File Storage API.\n\nYou can use this API to access all File Storage API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- |... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-31T23:19:35.735Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-09-02T23:19:50.981Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-09-02T23:19:50.981Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11828, 11829], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Webhook API.\n\nYou can use this API to access all Webhook API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Webhook API.\n\nYou can <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11832, 11833], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Webhook API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["webhook"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11840], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410510, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["webhook"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11830, 11831, 11834, 11835, 11836, 11837, 11838, 11839, 11841, 11842, 11843, 11844, 11845], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Webhook API.\n\nYou can use this API to access all Webhook API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Webhook API\nversion: 8.86.0\nx-apideck-api: webhook\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: webhook\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11847, 11848], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11827, 11846, 11849, 11850, 11851, 11852, 11853], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-09-02T23:19:50.981Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Webhook API.\n\nYou can use this API to access all Webhook API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -----------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Webhook API, version:8.86.0, x-apideck-api:webhook, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/webhook.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:webhook, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-09-02T23:19:50.981Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11854], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-09-02T23:19:50.981Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Webhook API.\n\nYou can use this API to access all Webhook API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/webhook/8.86.0/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-09-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:webhook: DataRow\">apideck.com:webhook</span>", children: [11825, 11826, 11855], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-09-02T23:19:50.981Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-09-02T23:19:50.981Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Webhook API.\n\nYou can use this API to access all Webhook API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-09-02T23:19:50.981Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-19T23:16:31.336Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-19T23:16:31.336Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11860, 11861], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Customer Support API.\n\nYou can use this API to access all Customer Support API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Customer Support API.\n<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11864, 11865], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Customer Support"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["customer-support"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11872], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410511, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["customer-support"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11862, 11863, 11866, 11867, 11868, 11869, 11870, 11871, 11873, 11874, 11875, 11876, 11877], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Customer Support API.\n\nYou can use this API to access all Customer Support API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Customer Support\nversion: 8.86.0\nx-apideck-api: customer-support\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: customer-support\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11879, 11880], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11859, 11878, 11881, 11882, 11883, 11884, 11885], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-19T23:16:31.336Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Customer Support API.\n\nYou can use this API to access all Customer Support API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -----------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Customer Support, version:8.86.0, x-apideck-api:customer-support, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/customer-support.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:customer-support, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-19T23:16:31.336Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11886], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-10-19T23:16:31.336Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Customer Support API.\n\nYou can use this API to access all Customer Support API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/customer-support/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:customer-support: DataRow\">apideck.com:customer-support</span>", children: [11857, 11858, 11887], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-19T23:16:31.336Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-10-19T23:16:31.336Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Customer Support API.\n\nYou can use this API to access all Customer Support API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | -... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-19T23:16:31.336Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-25T23:16:59.420Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-25T23:16:59.420Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11892, 11893], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the SMS API.\n\nYou can use this API to access all SMS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the SMS API.\n\nYou can use <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11896, 11897], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["SMS API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["sms"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11904], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410512, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sms"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11894, 11895, 11898, 11899, 11900, 11901, 11902, 11903, 11905, 11906, 11907, 11908, 11909], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the SMS API.\n\nYou can use this API to access all SMS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: SMS API\nversion: 8.86.0\nx-apideck-api: sms\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: sms\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11911, 11912], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11891, 11910, 11913, 11914, 11915, 11916, 11917], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-25T23:16:59.420Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the SMS API.\n\nYou can use this API to access all SMS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:SMS API, version:8.86.0, x-apideck-api:sms, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/sms.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:sms, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-25T23:16:59.420Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11918], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-10-25T23:16:59.420Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the SMS API.\n\nYou can use this API to access all SMS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/sms/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:sms: DataRow\">apideck.com:sms</span>", children: [11889, 11890, 11919], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-25T23:16:59.420Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-10-25T23:16:59.420Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the SMS API.\n\nYou can use this API to access all SMS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ------... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-25T23:16:59.420Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-28T23:16:09.110Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-10-28T23:16:09.110Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11924, 11925], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the ATS API.\n\nYou can use this API to access all ATS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the ATS API.\n\nYou can use <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11928, 11929], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ATS API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["ats"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11936], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410513, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ats"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11926, 11927, 11930, 11931, 11932, 11933, 11934, 11935, 11937, 11938, 11939, 11940, 11941], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the ATS API.\n\nYou can use this API to access all ATS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: ATS API\nversion: 8.86.0\nx-apideck-api: ats\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: ats\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11943, 11944], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11923, 11942, 11945, 11946, 11947, 11948, 11949], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-28T23:16:09.110Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the ATS API.\n\nYou can use this API to access all ATS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:ATS API, version:8.86.0, x-apideck-api:ats, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/ats.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:ats, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-28T23:16:09.110Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11950], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-10-28T23:16:09.110Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the ATS API.\n\nYou can use this API to access all ATS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/ats/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:ats: DataRow\">apideck.com:ats</span>", children: [11921, 11922, 11951], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-10-28T23:16:09.110Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-10-28T23:16:09.110Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the ATS API.\n\nYou can use this API to access all ATS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ------... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-10-28T23:16:09.110Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:19.576Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-01T23:17:19.576Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11956, 11957], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the HRIS API.\n\nYou can use this API to access all HRIS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the HRIS API.\n\nYou can use<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11960, 11961], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["HRIS API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["hris"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [11968], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410514, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hris"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11958, 11959, 11962, 11963, 11964, 11965, 11966, 11967, 11969, 11970, 11971, 11972, 11973], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the HRIS API.\n\nYou can use this API to access all HRIS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: HRIS API\nversion: 8.86.0\nx-apideck-api: hris\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: hris\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [11975, 11976], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11955, 11974, 11977, 11978, 11979, 11980, 11981], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:19.576Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the HRIS API.\n\nYou can use this API to access all HRIS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -----------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:HRIS API, version:8.86.0, x-apideck-api:hris, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/hris.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:hris, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:19.576Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [11982], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-11-01T23:17:19.576Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the HRIS API.\n\nYou can use this API to access all HRIS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/hris/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:hris: DataRow\">apideck.com:hris</span>", children: [11953, 11954, 11983], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-01T23:17:19.576Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-11-01T23:17:19.576Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the HRIS API.\n\nYou can use this API to access all HRIS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ----... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-01T23:17:19.576Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-03T23:19:04.115Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-11-03T23:19:04.115Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [11988, 11989], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the Connector API.\n\nYou can use this API to access all Connector API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the Connector API.\n\nYou ca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [11992, 11993], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Connector API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["connector"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12000], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410515, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["connector"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [11990, 11991, 11994, 11995, 11996, 11997, 11998, 11999, 12001, 12002, 12003, 12004, 12005], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the Connector API.\n\nYou can use this API to access all Connector API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Connector API\nversion: 8.86.0\nx-apideck-api: connector\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: connector\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [12007, 12008], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [11987, 12006, 12009, 12010, 12011, 12012, 12013], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-03T23:19:04.115Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Connector API.\n\nYou can use this API to access all Connector API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Connector API, version:8.86.0, x-apideck-api:connector, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/connector.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:connector, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-03T23:19:04.115Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12014], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-11-03T23:19:04.115Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Connector API.\n\nYou can use this API to access all Connector API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/connector/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:connector: DataRow\">apideck.com:connector</span>", children: [11985, 11986, 12015], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-11-03T23:19:04.115Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-11-03T23:19:04.115Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the Connector API.\n\nYou can use this API to access all Connector API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -----... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-11-03T23:19:04.115Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-12-06T23:16:42.731Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-12-06T23:16:42.731Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [12020, 12021], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the POS API.\n\nYou can use this API to access all POS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\">Welcome to the POS API.\n\nYou can use <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [12024, 12025], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["POS API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["8.86.0"] },
{ name: "<span title=\"x-apideck-api: String\">x-apideck-api</span>", children: [], rightAlign: false, values: ["pos"] },
{ name: "<span title=\"x-apideck-sdk-support: Boolean\">x-apideck-sdk-support</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12032], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410516, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pos"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12022, 12023, 12026, 12027, 12028, 12029, 12030, 12031, 12033, 12034, 12035, 12036, 12037], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Welcome to the POS API.\n\nYou can use this API to access all POS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| x-apideck-consumer-id | String | Yes | The id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app. |\n| x-apideck-service-id | String | No | Describe the service you want to call (e.g., pipedrive). Only needed when a customer has activated multiple integrations for the same Unified API. |\n| x-apideck-raw | Boolean | No | Include raw response. Mostly used for debugging purposes. |\n| x-apideck-app-id | String | Yes | The application id of your Unify application. Available at https://app.apideck.com/unify/api-keys. |\n| Authorization | String | Yes | Bearer API KEY |\n\n## Authorization\n\nYou can interact with the API through the authorization methods below.\n\n<!-- ReDoc-Inject: <security-definitions> -->\n\n## Pagination\n\nAll API resources have support for bulk retrieval via list APIs. Apideck uses cursor-based pagination via the optional `cursor` and `limit` parameters.\n\nTo fetch the first page of results, call the list API without a `cursor` parameter. Afterwards you can fetch subsequent pages by providing a cursor parameter. You will find the next cursor in the response body in `meta.cursors.next`. If `meta.cursors.next` is `null` you're at the end of the list.\n\nIn the REST API you can also use the `links` from the response for added convenience. Simply call the URL in `links.next` to get the next page of results.\n\n### Query Parameters\n\n| Name | Type | Required | Description |\n| ------ | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |\n| cursor | String | No | Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response. |\n| limit | Number | No | Number of results to return. Minimum 1, Maximum 200, Default 20 |\n\n### Response Body\n\n| Name | Type | Description |\n| --------------------- | ------ | ------------------------------------------------------------------ |\n| meta.cursors.previous | String | Cursor to navigate to the previous page of results through the API |\n| meta.cursors.current | String | Cursor to navigate to the current page of results through the API |\n| meta.cursors.next | String | Cursor to navigate to the next page of results through the API |\n| meta.items_on_page | Number | Number of items returned in the data property of the response |\n| links.previous | String | Link to navigate to the previous page of results through the API |\n| links.current | String | Link to navigate to the current page of results through the API |\n| links.next | String | Link to navigate to the next page of results through the API |\n\n⚠️ `meta.cursors.previous`/`links.previous` is not available for all connectors.\n\n## SDKs and API Clients\n\nWe currently offer a [Node.js](https://developers.apideck.com/sdks/node), [PHP](https://developers.apideck.com/sdks/php) and [.NET](https://developers.apideck.com/sdks/dot-net) SDK.\nNeed another SDK? [Request the SDK of your choice](https://integrations.apideck.com/request).\n\n## Debugging\n\nBecause of the nature of the abstraction we do in Apideck Unify we still provide the option to the receive raw requests and responses being handled underlying. By including the raw flag `?raw=true` in your requests you can still receive the full request. Please note that this increases the response size and can introduce extra latency.\n\n## Errors\n\nThe API returns standard HTTP response codes to indicate success or failure of the API requests. For errors, we also return a customized error message inside the JSON response. You can see the returned HTTP status codes below.\n\n| Code | Title | Description |\n| ---- | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 200 | OK | The request message has been successfully processed, and it has produced a response. The response message varies, depending on the request method and the requested data. |\n| 201 | Created | The request has been fulfilled and has resulted in one or more new resources being created. |\n| 204 | No Content | The server has successfully fulfilled the request and that there is no additional content to send in the response payload body. |\n| 400 | Bad Request | The receiving server cannot understand the request because of malformed syntax. Do not repeat the request without first modifying it; check the request for errors, fix them and then retry the request. |\n| 401 | Unauthorized | The request has not been applied because it lacks valid authentication credentials for the target resource. |\n| 402 | Payment Required | Subscription data is incomplete or out of date. You'll need to provide payment details to continue. |\n| 403 | Forbidden | You do not have the appropriate user rights to access the request. Do not repeat the request. |\n| 404 | Not Found | The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. |\n| 409 | Conflict | The request could not be completed due to a conflict with the current state of the target resource. |\n| 422 | Unprocessable Entity | The server understands the content type of the request entity, and the syntax of the request entity is correct but was unable to process the contained instructions. |\n| 429 | Too Many Requests | You sent too many requests in a given amount of time ("rate limit"). Try again later |\n| 5xx | Server Errors | Something went wrong with the Unify API. These errors are logged on our side. You can contact our team to resolve the issue. |\n\n### Handling errors\n\nThe Unify API and SDKs can produce errors for many reasons, such as a failed requests due to misconfigured integrations, invalid parameters, authentication errors, and network unavailability.\n\n### Error Types\n\n#### RequestValidationError\n\nRequest is not valid for the current endpoint. The response body will include details on the validation error. Check the spelling and types of your attributes, and ensure you are not passing data that is outside of the specification.\n\n#### UnsupportedFiltersError\n\nFilters in the request are valid, but not supported by the connector. Remove the unsupported filter(s) to get a successful response.\n\n#### UnsupportedSortFieldError\n\nSort field (`sort[by]`) in the request is valid, but not supported by the connector. Replace or remove the sort field to get a successful response.\n\n#### InvalidCursorError\n\nPagination cursor in the request is not valid for the current connector. Make sure to use a cursor returned from the API, for the same connector.\n\n#### ConnectorExecutionError\n\nA Unified API request made via one of our downstream connectors returned an unexpected error. The `status_code` returned is proxied through to error response along with their original response via the error detail.\n\n#### UnauthorizedError\n\nWe were unable to authorize the request as made. This can happen for a number of reasons, from missing header params to passing an incorrect authorization token. Verify your Api Key is being set correctly in the authorization header. ie: `Authorization: 'Bearer sk_live_***'`\n\n#### ConnectorCredentialsError\n\nA request using a given connector has not been authorized. Ensure the connector you are trying to use has been configured correctly and been authorized for use.\n\n#### ConnectorDisabledError\n\nA request has been made to a connector that has since been disabled. This may be temporary - You can contact our team to resolve the issue.\n\n#### ConnectorRateLimitError\n\nYou sent too many request to a connector. These rate limits vary from connector to connector. You will need to try again later.\n\n#### RequestLimitError\n\nYou have reached the number of requests included in your Free Tier Subscription. You will no be able to make further requests until this limit resets at the end of the month, or talk to us about upgrading your subscription to continue immediately.\n\n#### EntityNotFoundError\n\nYou've made a request for a resource or route that does not exist. Verify your path parameters or any identifiers used to fetch this resource.\n\n#### OAuthCredentialsNotFoundError\n\nWhen adding a connector integration that implements OAuth, both a `client_id` and `client_secret` must be provided before any authorizations can be performed. Verify the integration has been configured properly before continuing.\n\n#### IntegrationNotFoundError\n\nThe requested connector integration could not be found associated to your `application_id`. Verify your `application_id` is correct, and that this connector has been added and configured for your application.\n\n#### ConnectionNotFoundError\n\nA valid connection could not be found associated to your `application_id`. Something _may_ have interrupted the authorization flow. You may need to start the connector authorization process again.\n\n#### ConnectionSettingsError\n\nThe connector has required settings that were not supplied. Verify `connection.settings` contains all required settings for the connector to be callable.\n\n#### ConnectorNotFoundError\n\nA request was made for an unknown connector. Verify your `service_id` is spelled correctly, and that this connector is enabled for your provided `unified_api`.\n\n#### OAuthRedirectUriError\n\nA request was made either in a connector authorization flow, or attempting to revoke connector access without a valid `redirect_uri`. This is the url the user should be returned to on completion of process.\n\n#### OAuthInvalidStateError\n\nThe state param is required and is used to ensure the outgoing authorization state has not been altered before the user is redirected back. It also contains required params needed to identify the connector being used. If this has been altered, the authorization will not succeed.\n\n#### OAuthCodeExchangeError\n\nWhen attempting to exchange the authorization code for an `access_token` during an OAuth flow, an error occurred. This may be temporary. You can reattempt authorization or contact our team to resolve the issue.\n\n#### OAuthConnectorError\n\nIt seems something went wrong on the connector side. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### MappingError\n\nThere was an error attempting to retrieve the mapping for a given attribute. We've been notified and are working to fix this issue.\n\n#### ConnectorMappingNotFoundError\n\nIt seems the implementation for this connector is incomplete. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorResponseMappingNotFoundError\n\nWe were unable to retrieve the response mapping for this connector. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationMappingNotFoundError\n\nConnector mapping has not been implemented for the requested operation. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorWorkflowMappingError\n\nThe composite api calls required for this operation have not been mapped entirely. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n#### ConnectorOperationUnsupportedError\n\nYou're attempting a call that is not supported by the connector. It's likely this operation is supported by another connector, but we're unable to implement for this one.\n\n#### PaginationNotSupportedError\n\nPagination is not yet supported for this connector, try removing limit and/or cursor from the query. It's possible this connector is in `beta` or still under development. We've been notified and are working to fix this issue.\n\n## API Design\n\n### API Styles and data formats\n\n#### REST API\n\nThe API is organized around [REST](https://restfulapi.net/), providing simple and predictable URIs to access and modify objects. Requests support standard HTTP methods like GET, PUT, POST, and DELETE and standard status codes. JSON is returned by all API responses, including errors. In all API requests, you must set the content-type HTTP header to application/json. All API requests must be made over HTTPS. Calls made over HTTP will fail.\n\n##### Available HTTP methods\n\nThe Apideck API uses HTTP verbs to understand if you want to read (GET), delete (DELETE) or create (POST) an object. When your web application cannot do a POST or DELETE, we provide the ability to set the method through the query parameter \_method.\n\n```\nPOST /messages\nGET /messages\nGET /messages/{messageId}\nPATCH /messages/{messageId}\nDELETE /messages/{messageId}\n```\n\nResponse bodies are always UTF-8 encoded JSON objects, unless explicitly documented otherwise. For some endpoints and use cases we divert from REST to provide a better developer experience.\n\n### Schema\n\nAll API requests and response bodies adhere to a common JSON format representing individual items, collections of items, links to related items and additional meta data.\n\n### Meta\n\nMeta data can be represented as a top level member named “meta”. Any information may be provided in the meta data. It’s most common use is to return the total number of records when requesting a collection of resources.\n\n### Idempotence (upcoming)\n\nTo prevent the creation of duplicate resources, every POST method (such as one that creates a consumer record) must specify a unique value for the X-Unique-Transaction-ID header name. Uniquely identifying each unique POST request ensures that the API processes a given request once and only once.\n\nUniquely identifying new resource-creation POSTs is especially important when the outcome of a response is ambiguous because of a transient service interruption, such as a server-side timeout or network disruption. If a service interruption occurs, then the client application can safely retry the uniquely identified request without creating duplicate operations. (API endpoints that guarantee that every uniquely identified request is processed only once no matter how many times that uniquely identifiable request is made are described as idempotent.)\n\n### Request IDs\n\nEach API request has an associated request identifier. You can find this value in the response headers, under Request-Id. You can also find request identifiers in the URLs of individual request logs in your Dashboard. If you need to contact us about a specific request, providing the request identifier will ensure the fastest possible resolution.\n\n### Fixed field types\n\n#### Dates\n\nThe dates returned by the API are all represented in UTC (ISO8601 format).\n\nThis example `2019-11-14T00:55:31.820Z` is defined by the ISO 8601 standard. The T in the middle separates the year-month-day portion from the hour-minute-second portion. The Z on the end means UTC, that is, an offset-from-UTC of zero hours-minutes-seconds. The Z is pronounced "Zulu" per military/aviation tradition.\n\nThe ISO 8601 standard is more modern. The formats are wisely designed to be easy to parse by machine as well as easy to read by humans across cultures.\n\n#### Prices and Currencies\n\nAll prices returned by the API are represented as integer amounts in a currency’s smallest unit. For example, $5 USD would be returned as 500 (i.e, 500 cents).\n\nFor zero-decimal currencies, amounts will still be provided as an integer but without the need to divide by 100. For example, an amount of ¥5 (JPY) would be returned as 5.\n\nAll currency codes conform to [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217).\n\n## Support\n\nIf you have problems or need help with your case, you can always reach out to our Support.\n\n\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: POS API\nversion: 8.86.0\nx-apideck-api: pos\nx-apideck-sdk-support: true\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: pos\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [12039, 12040], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2023-01-12T23:20:00.060Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"8.86.0: DataRow\">8.86.0</span>", children: [12019, 12038, 12041, 12042, 12043, 12044, 12045], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-12-06T23:16:42.731Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the POS API.\n\nYou can use this API to access all POS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------..., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:POS API, version:8.86.0, x-apideck-api:pos, x-apideck-sdk-support:true, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/pos.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:pos, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2023-01-12T23:20:00.060Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-12-06T23:16:42.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12046], rightAlign: false, values: ["<span class=\"formatted\" title=\"8.86.0: { added:2021-12-06T23:16:42.731Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the POS API.\n\nYou can use this API to access all POS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ---------------------------------------------..., externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2023-01-12T23:20:00.060Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/pos/8.86.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">8.86.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-12-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:pos: DataRow\">apideck.com:pos</span>", children: [12017, 12018, 12047], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-12-06T23:16:42.731Z\npreferred: 8.86.0\nversions: { 8.86.0:{ added:2021-12-06T23:16:42.731Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Welcome to the POS API.\n\nYou can use this API to access all POS API endpoints.\n\n## Base URL\n\nThe base URL for all API requests is `https://unify.apideck.com`\n\nWe also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`\n\n## GraphQL\n\nUse the [GraphQL playground](https://developers.apideck.com/graphql/playground) to test out the GraphQL API.\n\n## Headers\n\nCustom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive.\n\n| Name | Type | Required | Description |\n| --------------------- | ------- | -------- | ------... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-12-06T23:16:42.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2022-03-29T23:21:43.768Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.0.6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2022-03-29T23:21:43.768Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@apideck.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [12052, 12053], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@apideck.com\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@apideck.com<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Ecosystem API"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [12056, 12057], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Ecosystem API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.0.6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12062], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410517, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apideck.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ecosystem"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"partner\"><span class=\"structural\">[</span>partner<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12054, 12055, 12058, 12059, 12060, 12061, 12063, 12064, 12065, 12066, 12067], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@apideck.com, url:https://developers.apideck.com }\ndescription: Ecosystem API\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Ecosystem API\nversion: 0.0.6\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apideck.com\nx-serviceName: ecosystem\nx-tags: [partner]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>he<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Apideck Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.apideck.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [12069, 12070], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apideck Developer Docs\nurl: https://developers.apideck.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apideck Develo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2022-04-08T23:17:35.247Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.json\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.yaml\">https://api.apis.guru/v2/specs/apidec<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"0.0.6: DataRow\">0.0.6</span>", children: [12051, 12068, 12071, 12072, 12073, 12074, 12075], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2022-03-29T23:21:43.768Z\ninfo: { contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Ecosystem API, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Ecosystem API, version:0.0.6, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/ecosystem.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:ecosystem, x-tags:[partner] }\nexternalDocs: { description:Apideck Developer Docs, url:https://developers.apideck.com }\nupdated: 2022-04-08T23:17:35.247Z\nswaggerUrl: https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2022-03-29T23:21:43.768Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12076], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.0.6: { added:2022-03-29T23:21:43.768Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Ecosystem API, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Ecosystem API, version:0.0.6, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/ecosystem.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:ecosystem, x-tags:[partner] }, externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2022-04-08T23:17:35.247Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.0.6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2022-03-29<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apideck.com:ecosystem: DataRow\">apideck.com:ecosystem</span>", children: [12049, 12050, 12077], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2022-03-29T23:21:43.768Z\npreferred: 0.0.6\nversions: { 0.0.6:{ added:2022-03-29T23:21:43.768Z, info:{ contact:{ email:hello@apideck.com, url:https://developers.apideck.com }, description:Ecosystem API, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Ecosystem API, version:0.0.6, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_developers.apideck.com_icon.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apideck-libraries/openapi-specs/master/ecosystem.yml, version:3.0 }, x-providerName:apideck.com, x-serviceName:ecosystem, x-tags:[partner] }, externalDocs:{ description:Apideck Developer Docs, url:https://developers.apideck.com }, updated:2022-04-08T23:17:35.247Z, swaggerUrl:https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apideck.com/ecosystem/0.0.6/openapi.yaml, openapiVer:3.0.3 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2022-03-29T23:21:43.768Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-01T14:33:27.955Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.0.2"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-11-01T14:33:27.955Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Registry service allows teams to manage descriptions of APIs.\">The Registry service allows teams to <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Registry"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.0.2"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410518, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apigee.local"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["registry"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12089], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12082, 12083, 12084, 12085, 12086, 12087, 12088, 12090], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The Registry service allows teams to manage descriptions of APIs.\ntitle: Registry\nversion: 0.0.2\nx-apisguru-categories: [developer_tools]\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/api... 3.0\n\nx-providerName: apigee.local\nx-serviceName: registry\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The Registry se<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.json\">https://api.apis.guru/v2/specs/apigee<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.yaml\">https://api.apis.guru/v2/specs/apigee<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.3"] },
{ name: "<span title=\"0.0.2: DataRow\">0.0.2</span>", children: [12081, 12091, 12092, 12093, 12094, 12095], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-01T14:33:27.955Z\ninfo: { description:The Registry service allows teams to manage descriptions of APIs., title:Registry, version:0.0.2, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apigee/registry/main/openapi.yaml, version:3.0 }, x-providerName:apigee.local, x-serviceName:registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.yaml\nopenapiVer: 3.0.3\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-01T14:33:27.955Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12096], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.0.2: { added:2020-11-01T14:33:27.955Z, info:{ description:The Registry service allows teams to manage descriptions of APIs., title:Registry, version:0.0.2, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apigee/registry/main/openapi.yaml, version:3.0 }, x-providerName:apigee.local, x-serviceName:registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.yaml, openapiVer:3.0.3 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.0.2: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-01<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apigee.local:registry: DataRow\">apigee.local:registry</span>", children: [12079, 12080, 12097], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-11-01T14:33:27.955Z\npreferred: 0.0.2\nversions: { 0.0.2:{ added:2020-11-01T14:33:27.955Z, info:{ description:The Registry service allows teams to manage descriptions of APIs., title:Registry, version:0.0.2, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/apigee/registry/main/openapi.yaml, version:3.0 }, x-providerName:apigee.local, x-serviceName:registry, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apigee.local/registry/0.0.2/openapi.yaml, openapiVer:3.0.3 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-11-01T14:33:27.955Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-01-17T12:05:29.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-01-17T12:05:29.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"One API serving data spanned across multiple verticals\">One API serving data spanned across m<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Marketcheck APIs"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12106], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410519, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apigee.net"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["marketcheck-cars"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12102, 12103, 12104, 12105, 12107, 12108, 12109, 12110], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: One API serving data spanned across multiple verticals\ntitle: Marketcheck APIs\nversion: 2.01\nx-apisguru-categories: [ecommerce]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://new-verticals-dot-marketcheck... 3.0\n\nx-providerName: apigee.net\nx-serviceName: marketcheck-cars\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>One API serving<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.json\">https://api.apis.guru/v2/specs/apigee<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.yaml\">https://api.apis.guru/v2/specs/apigee<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"2.01: DataRow\">2.01</span>", children: [12101, 12111, 12112, 12113, 12114, 12115], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-01-17T12:05:29.000Z\ninfo: { description:One API serving data spanned across multiple verticals, title:Marketcheck APIs, version:2.01, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://new-verticals-dot-marketcheck-gcp.uc.r.appspot.com/api-docs, version:3.0 }, x-providerName:apigee.net, x-serviceName:marketcheck-cars }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-01-17T12:05:29.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12116], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.01: { added:2018-01-17T12:05:29.000Z, info:{ description:One API serving data spanned across multiple verticals, title:Marketcheck APIs, version:2.01, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://new-verticals-dot-marketcheck-gcp.uc.r.appspot.com/api-docs, version:3.0 }, x-providerName:apigee.net, x-serviceName:marketcheck-cars }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-01-17T<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apigee.net:marketcheck-cars: DataRow\">apigee.net:marketcheck-cars</span>", children: [12099, 12100, 12117], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-01-17T12:05:29.000Z\npreferred: 2.01\nversions: { 2.01:{ added:2018-01-17T12:05:29.000Z, info:{ description:One API serving data spanned across multiple verticals, title:Marketcheck APIs, version:2.01, x-apisguru-categories:[ecommerce], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_MarketcheckAPIs_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://new-verticals-dot-marketcheck-gcp.uc.r.appspot.com/api-docs, version:3.0 }, x-providerName:apigee.net, x-serviceName:marketcheck-cars }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apigee.net/marketcheck-cars/2.01/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-01-17T12:05:29.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2016-04-14T12:48:50.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2016-04-14T12:48:50.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["transform@apimatic.io"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["API Transformer"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://apimatic.io/transformer"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [12122, 12123, 12124], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: transform@apimatic.io\nname: API Transformer\nurl: https://apimatic.io/transformer\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>transform@apimatic.io<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Transform API Descriptions from/to various formats\">Transform API Descriptions from/to va<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["MIT"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://opensource.org/licenses/MIT"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [12127, 12128], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: MIT\nurl: https://opensource.org/licenses/MIT\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>MIT<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://opensourc<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apimatic.io/transformer"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["APIMATIC API Transformer"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\ntools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">, </span>tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#2a313a"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12134, 12135], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #2a313a\nurl: https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#2a313a<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410520, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apimatic.io"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"API\nAPI descriptions\nAPI definition\nSwagger\nRAML\nWADL\nAPI blueprint\nOpenAPI\"><span class=\"structural\">[</span>API<span class=\"structural\">, </span>API descriptions<span class=\"structural\">, </span>API def<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-unofficialSpec: Boolean\">x-unofficialSpec</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12125, 12126, 12129, 12130, 12131, 12132, 12133, 12136, 12137, 12138, 12139, 12140], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:transform@apimatic.io, name:API Transformer, url:https://apimatic.io/transformer }\ndescription: Transform API Descriptions from/to various formats\nlicense: { name:MIT, url:https://opensource.org/licenses/MIT }\ntermsOfService: https://apimatic.io/transformer\ntitle: APIMATIC API Transformer\nversion: 1.0\nx-apisguru-categories: [developer_tools, tools]\nx-logo: { backgroundColor:#2a313a, url:https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Mer... 2.0\n\nx-providerName: apimatic.io\nx-tags: [API, API descriptions, API definition, Swagger, RAML, WADL, API blueprint, OpenAPI]\nx-unofficialSpec: true\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>tra<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["API Transformer Website"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://apimatic.io/transformer"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [12142, 12143], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: API Transformer Website\nurl: https://apimatic.io/transformer\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>API Transforme<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.json\">https://api.apis.guru/v2/specs/apimat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.yaml\">https://api.apis.guru/v2/specs/apimat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"1.0: DataRow\">1.0</span>", children: [12121, 12141, 12144, 12145, 12146, 12147, 12148], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2016-04-14T12:48:50.000Z\ninfo: { contact:{ email:transform@apimatic.io, name:API Transformer, url:https://apimatic.io/transformer }, description:Transform API Descriptions from/to various formats, license:{ name:MIT, url:https://opensource.org/licenses/MIT }, termsOfService:https://apimatic.io/transformer, title:APIMATIC API Transformer, version:1.0, x-apisguru-categories:[developer_tools, tools], x-logo:{ backgroundColor:#2a313a, url:https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Mermade/open_api_specifications/master/APIMATIC%20API%20Transformer/swagger.json, version:2.0 }, x-providerName:apimatic.io, x-tags:[API, API descriptions, API definition, Swagger, RAML, WADL, API blueprint, OpenAPI], x-unofficialSpec:true }\nexternalDocs: { description:API Transformer Website, url:https://apimatic.io/transformer }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2016-04-14T12:48:50.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12149], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0: { added:2016-04-14T12:48:50.000Z, info:{ contact:{ email:transform@apimatic.io, name:API Transformer, url:https://apimatic.io/transformer }, description:Transform API Descriptions from/to various formats, license:{ name:MIT, url:https://opensource.org/licenses/MIT }, termsOfService:https://apimatic.io/transformer, title:APIMATIC API Transformer, version:1.0, x-apisguru-categories:[developer_tools, tools], x-logo:{ backgroundColor:#2a313a, url:https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Mermade/open_api_specifications/master/APIMATIC%20API%20Transformer/swagger.json, version:2.0 }, x-providerName:apimatic.io, x-tags:[API, API descriptions, API definition, Swagger, RAML, WADL, API blueprint, OpenAPI], x-unofficialSpec:true }, externalDocs:{ description:API Transformer Website, url:https://apimatic.io/transformer }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apimatic.io/1.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2016-04-14T1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apimatic.io: DataRow\">apimatic.io</span>", children: [12119, 12120, 12150], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2016-04-14T12:48:50.000Z\npreferred: 1.0\nversions: { 1.0:{ added:2016-04-14T12:48:50.000Z, info:{ contact:{ email:transform@apimatic.io, name:API Transformer, url:https://apimatic.io/transformer }, description:Transform API Descriptions from/to various formats, license:{ name:MIT, url:https://opensource.org/licenses/MIT }, termsOfService:https://apimatic.io/transformer, title:APIMATIC API Transformer, version:1.0, x-apisguru-categories:[developer_tools, tools], x-logo:{ backgroundColor:#2a313a, url:https://api.apis.guru/v2/cache/logo/https_apimatic.io_img_theme_Convertron.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Mermade/open_api_specifications/master/APIMATIC%20API%20Transformer/swagger.json, version:2.0 }, x-providerName:apimatic.io, x-tags:[API, API descriptions, API definition, Swagger, RAML, WADL, API blueprint, OpenAPI], x-unofficialSpec:true }, externalDocs:{ description:API Transformer Website, url:https://apimatic.io/transformer }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2016-04-14T12:48:50.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2015-11-26T17:52:26.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.0.2"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2015-11-26T17:52:26.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["mike.ralphson@gmail.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["APIs.guru"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://APIs.guru"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [12155, 12156, 12157], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: mike.ralphson@gmail.com\nname: APIs.guru\nurl: https://APIs.guru\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>mike.ralphson@gmail.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Wikipedia for Web APIs. Repository of API specs in OpenAPI 3.0 format.\n\n**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).\n\nClient sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)\n\">Wikipedia for Web APIs. Repository of<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["CC0 1.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://github.com/APIs-guru/openapi-directory#licenses\">https://github.com/APIs-guru/openapi-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [12160, 12161], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: CC0 1.0\nurl: https://github.com/APIs-guru/openapi-directory#licenses\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>CC0 1.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://githu<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["APIs.guru"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.0.2"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\ndeveloper_tools\"><span class=\"structural\">[</span>open_data<span class=\"structural\">, </span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12166], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410521, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apis.guru"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"API\nCatalog\nDirectory\nREST\nSwagger\nOpenAPI\"><span class=\"structural\">[</span>API<span class=\"structural\">, </span>Catalog<span class=\"structural\">, </span>Directory<span class=\"structural\">, </span>REST<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12158, 12159, 12162, 12163, 12164, 12165, 12167, 12168, 12169, 12170], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:mike.ralphson@gmail.com, name:APIs.guru, url:https://APIs.guru }\ndescription: Wikipedia for Web APIs. Repository of API specs in OpenAPI 3.0 format.\n\n**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).\n\nClient sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)\n\nlicense: { name:CC0 1.0, url:https://github.com/APIs-guru/openapi-directory#licenses }\ntitle: APIs.guru\nversion: 2.0.2\nx-apisguru-categories: [open_data, developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg }\nx-origin: format url version\n 0 swagger https://api.apis.guru/v2/swagger.json 2.0\n\nx-providerName: apis.guru\nx-tags: [API, Catalog, Directory, REST, Swagger, OpenAPI]\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>mik<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://github.com/APIs-guru/openapi-directory/blob/master/API.md\">https://github.com/APIs-guru/openapi-<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [12172], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://github.com/APIs-guru/openapi-directory/blob/master/API.md\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://github.com/APIs-guru<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-04-07T09:52:45.374Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.json\">https://api.apis.guru/v2/specs/apis.g<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.yaml\">https://api.apis.guru/v2/specs/apis.g<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2.0.2: DataRow\">2.0.2</span>", children: [12154, 12171, 12173, 12174, 12175, 12176, 12177], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2015-11-26T17:52:26.000Z\ninfo: { contact:{ email:mike.ralphson@gmail.com, name:APIs.guru, url:https://APIs.guru }, description:Wikipedia for Web APIs. Repository of API specs in OpenAPI 3.0 format.\n\n**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).\n\nClient sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)\n, license:{ name:CC0 1.0, url:https://github.com/APIs-guru/openapi-directory#licenses }, title:APIs.guru, version:2.0.2, x-apisguru-categories:[open_data, developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg }, x-origin:[1 x 3] { format:swagger, url:https://api.apis.guru/v2/swagger.json, version:2.0 }, x-providerName:apis.guru, x-tags:[API, Catalog, Directory, REST, Swagger, OpenAPI] }\nexternalDocs: { url:https://github.com/APIs-guru/openapi-directory/blob/master/API.md }\nupdated: 2021-04-07T09:52:45.374Z\nswaggerUrl: https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2015-11-26T17:52:26.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12178], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.0.2: { added:2015-11-26T17:52:26.000Z, info:{ contact:{ email:mike.ralphson@gmail.com, name:APIs.guru, url:https://APIs.guru }, description:Wikipedia for Web APIs. Repository of API specs in OpenAPI 3.0 format.\n\n**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).\n\nClient sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)\n, license:{ name:CC0 1.0, url:https://github.com/APIs-guru/openapi-directory#licenses }, title:APIs.guru, version:2.0.2, x-apisguru-categories:[open_data, developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg }, x-origin:[1 x 3] { format:swagger, url:https://api.apis.guru/v2/swagger.json, version:2.0 }, x-providerName:apis.guru, x-tags:[API, Catalog, Directory, REST, Swagger, OpenAPI] }, externalDocs:{ url:https://github.com/APIs-guru/openapi-directory/blob/master/API.md }, updated:2021-04-07T09:52:45.374Z, swaggerUrl:https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apis.guru/2.0.2/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.0.2: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2015-11-26<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apis.guru: DataRow\">apis.guru</span>", children: [12152, 12153, 12179], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2015-11-26T17:52:26.000Z\npreferred: 2.0.2\nversions: { 2.0.2:{ added:2015-11-26T17:52:26.000Z, info:{ contact:{ email:mike.ralphson@gmail.com, name:APIs.guru, url:https://APIs.guru }, description:Wikipedia for Web APIs. Repository of API specs in OpenAPI 3.0 format.\n\n**Warning**: If you want to be notified about changes in advance please join our [Slack channel](https://join.slack.com/t/mermade/shared_invite/zt-g78g7xir-MLE_CTCcXCdfJfG3CJe9qA).\n\nClient sample: [[Demo]](https://apis.guru/simple-ui) [[Repo]](https://github.com/APIs-guru/simple-ui)\n, license:{ name:CC0 1.0, url:https://github.com/APIs-guru/openapi-directory#licenses }, title:APIs.guru, version:2.0.2, x-apisguru-categories:[open_data, developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_branding_logo_vertical.svg }, x-origin:[1 x 3] { format:swagger, url:https://api.apis.guru/v2/swagger.json, version:2.0 }, x-providerName:apis.guru, x-tags:[API, Catalog, Directory, REST, Swagger, OpenAPI] }, externalDocs:{ url:https://github.com/APIs-guru/openap... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2015-11-26T17:52:26.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:38.960Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:38.960Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Public distribution system (PDS) is an Indian food security system. Established by the Government of India under Ministry of Consumer Affairs, Food, and Public Distribution and managed jointly with state governments in India. Jharkhand PDS Ration Card Certificates is available in Digilocker for Citizen.\">Public distribution system (PDS) is a<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Food, Public Distribution & Consumer Affairs (PDS), Jharkhand\">Department of Food, Public Distributi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410522, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aaharjh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12192], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12184, 12185, 12186, 12187, 12188, 12189, 12190, 12191, 12193], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Public distribution system (PDS) is an Indian food security system. Established by the Government of India under Ministry of Consumer Affairs, Food, and Public Distribution and managed jointly with state governments in India. Jharkhand PDS Ration Card Certificates is available in Digilocker for Citizen.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Food, Public Distribution & Consumer Affairs (PDS), Jharkhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aaharjh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Public distribu<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:38.960Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12183, 12194, 12195, 12196, 12197, 12198], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:38.960Z\ninfo: { description:Public distribution system (PDS) is an Indian food security system. Established by the Government of India under Ministry of Consumer Affairs, Food, and Public Distribution and managed jointly with state governments in India. Jharkhand PDS Ration Card Certificates is available in Digilocker for Citizen., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food, Public Distribution & Consumer Affairs (PDS), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aaharjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aaharjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:02:38.960Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:38.960Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12199], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:02:38.960Z, info:{ description:Public distribution system (PDS) is an Indian food security system. Established by the Government of India under Ministry of Consumer Affairs, Food, and Public Distribution and managed jointly with state governments in India. Jharkhand PDS Ration Card Certificates is available in Digilocker for Citizen., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food, Public Distribution & Consumer Affairs (PDS), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aaharjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aaharjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:38.960Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aaharjh: DataRow\">apisetu.gov.in:aaharjh</span>", children: [12181, 12182, 12200], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:38.960Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:02:38.960Z, info:{ description:Public distribution system (PDS) is an Indian food security system. Established by the Government of India under Ministry of Consumer Affairs, Food, and Public Distribution and managed jointly with state governments in India. Jharkhand PDS Ration Card Certificates is available in Digilocker for Citizen., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food, Public Distribution & Consumer Affairs (PDS), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aaharjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aaharjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:38.960Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aaharjh/3.0.0/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:38.960Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:44.467Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:44.467Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance policies issued by Acko General Insurance (https://www.acko.com) can be fetched by the citizens in their Digilocker accounts.\">Insurance policies issued by Acko Gen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Acko General Insurance Limited"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410523, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["acko"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12213], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12205, 12206, 12207, 12208, 12209, 12210, 12211, 12212, 12214], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance policies issued by Acko General Insurance (https://www.acko.com) can be fetched by the citizens in their Digilocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Acko General Insurance Limited\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: acko\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:44.467Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12204, 12215, 12216, 12217, 12218, 12219], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:44.467Z\ninfo: { description:Insurance policies issued by Acko General Insurance (https://www.acko.com) can be fetched by the citizens in their Digilocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Acko General Insurance Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/acko.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:acko, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:02:44.467Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:44.467Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12220], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:02:44.467Z, info:{ description:Insurance policies issued by Acko General Insurance (https://www.acko.com) can be fetched by the citizens in their Digilocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Acko General Insurance Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/acko.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:acko, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:44.467Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:acko: DataRow\">apisetu.gov.in:acko</span>", children: [12202, 12203, 12221], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:44.467Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:02:44.467Z, info:{ description:Insurance policies issued by Acko General Insurance (https://www.acko.com) can be fetched by the citizens in their Digilocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Acko General Insurance Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/acko.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:acko, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:44.467Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/acko/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:44.467Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:50.376Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:50.376Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Accountants General, Tripura.\">APIs provided by Accountants General,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Accountants General, Tripura"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410524, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["agtripura"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12234], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12226, 12227, 12228, 12229, 12230, 12231, 12232, 12233, 12235], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Accountants General, Tripura.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Accountants General, Tripura\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: agtripura\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:50.376Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12225, 12236, 12237, 12238, 12239, 12240], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:50.376Z\ninfo: { description:APIs provided by Accountants General, Tripura., termsOfService:https://apisetu.gov.in/terms.php, title:Accountants General, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/agtripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:agtripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:02:50.376Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:50.376Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12241], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:02:50.376Z, info:{ description:APIs provided by Accountants General, Tripura., termsOfService:https://apisetu.gov.in/terms.php, title:Accountants General, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/agtripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:agtripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:50.376Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:agtripura: DataRow\">apisetu.gov.in:agtripura</span>", children: [12223, 12224, 12242], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:50.376Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:02:50.376Z, info:{ description:APIs provided by Accountants General, Tripura., termsOfService:https://apisetu.gov.in/terms.php, title:Accountants General, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/agtripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:agtripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:50.376Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/agtripura/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:50.376Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:56.095Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:56.095Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ration Cards issued by Food, Civil Supplies and Consumer Affairs Department, Karnataka (https://ahara.kar.nic.in) are available for download on DigiLocker.\">Ration Cards issued by Food, Civil Su<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Food, Civil Supplies and Consumer Affairs Department, Karnataka\">Food, Civil Supplies and Consumer Aff<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410525, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aharakar"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12255], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12247, 12248, 12249, 12250, 12251, 12252, 12253, 12254, 12256], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Ration Cards issued by Food, Civil Supplies and Consumer Affairs Department, Karnataka (https://ahara.kar.nic.in) are available for download on DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Food, Civil Supplies and Consumer Affairs Department, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aharakar\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Ration Cards is<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:02:56.095Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12246, 12257, 12258, 12259, 12260, 12261], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:56.095Z\ninfo: { description:Ration Cards issued by Food, Civil Supplies and Consumer Affairs Department, Karnataka (https://ahara.kar.nic.in) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food, Civil Supplies and Consumer Affairs Department, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aharakar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aharakar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:02:56.095Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:56.095Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12262], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:02:56.095Z, info:{ description:Ration Cards issued by Food, Civil Supplies and Consumer Affairs Department, Karnataka (https://ahara.kar.nic.in) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food, Civil Supplies and Consumer Affairs Department, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aharakar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aharakar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:56.095Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aharakar: DataRow\">apisetu.gov.in:aharakar</span>", children: [12244, 12245, 12263], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:02:56.095Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:02:56.095Z, info:{ description:Ration Cards issued by Food, Civil Supplies and Consumer Affairs Department, Karnataka (https://ahara.kar.nic.in) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food, Civil Supplies and Consumer Affairs Department, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aharakar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aharakar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:02:56.095Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aharakar/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:02:56.095Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:02.390Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:02.390Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AIIMS Mangalagiri is one of the AIIMS healthcare institutes being established by the Ministry of Health & Family Welfare, Government of India.\">AIIMS Mangalagiri is one of the AIIMS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AIIMS Mangalagiri"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410526, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aiimsmangalagiri"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12276], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12268, 12269, 12270, 12271, 12272, 12273, 12274, 12275, 12277], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: AIIMS Mangalagiri is one of the AIIMS healthcare institutes being established by the Ministry of Health & Family Welfare, Government of India.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: AIIMS Mangalagiri\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aiimsmangalagiri\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>AIIMS Mangalagi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:02.390Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12267, 12278, 12279, 12280, 12281, 12282], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:02.390Z\ninfo: { description:AIIMS Mangalagiri is one of the AIIMS healthcare institutes being established by the Ministry of Health & Family Welfare, Government of India., termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Mangalagiri, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsmangalagiri.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsmangalagiri, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:02.390Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:02.390Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12283], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:02.390Z, info:{ description:AIIMS Mangalagiri is one of the AIIMS healthcare institutes being established by the Ministry of Health & Family Welfare, Government of India., termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Mangalagiri, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsmangalagiri.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsmangalagiri, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:02.390Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aiimsmangalagiri: DataRow\">apisetu.gov.in:aiimsmangalagiri</span>", children: [12265, 12266, 12284], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:02.390Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:02.390Z, info:{ description:AIIMS Mangalagiri is one of the AIIMS healthcare institutes being established by the Ministry of Health & Family Welfare, Government of India., termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Mangalagiri, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsmangalagiri.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsmangalagiri, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:02.390Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsmangalagiri/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:02.390Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:08.175Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:08.175Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"All India Institute of Medical Sciences Patna, previously Jaya Prakash Narayan All India Institute of Medical Sciences, is a medical college and medical research public institute located in Phulwari Sharif, Patna, Bihar,\">All India Institute of Medical Scienc<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AIIMS, Patna"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410527, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aiimspatna"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12297], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12289, 12290, 12291, 12292, 12293, 12294, 12295, 12296, 12298], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: All India Institute of Medical Sciences Patna, previously Jaya Prakash Narayan All India Institute of Medical Sciences, is a medical college and medical research public institute located in Phulwari Sharif, Patna, Bihar,\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: AIIMS, Patna\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aiimspatna\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>All India Insti<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:08.175Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12288, 12299, 12300, 12301, 12302, 12303], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:08.175Z\ninfo: { description:All India Institute of Medical Sciences Patna, previously Jaya Prakash Narayan All India Institute of Medical Sciences, is a medical college and medical research public institute located in Phulwari Sharif, Patna, Bihar,, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimspatna.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimspatna, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:08.175Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:08.175Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12304], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:08.175Z, info:{ description:All India Institute of Medical Sciences Patna, previously Jaya Prakash Narayan All India Institute of Medical Sciences, is a medical college and medical research public institute located in Phulwari Sharif, Patna, Bihar,, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimspatna.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimspatna, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:08.175Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aiimspatna: DataRow\">apisetu.gov.in:aiimspatna</span>", children: [12286, 12287, 12305], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:08.175Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:08.175Z, info:{ description:All India Institute of Medical Sciences Patna, previously Jaya Prakash Narayan All India Institute of Medical Sciences, is a medical college and medical research public institute located in Phulwari Sharif, Patna, Bihar,, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimspatna.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimspatna, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:08.175Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimspatna/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:08.175Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:14.435Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:14.435Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Degree certificates issued by AIIMS Rishikesh in year 2018 can be pulled by students into their DigiLocker accounts\">Degree certificates issued by AIIMS R<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AIIMS Rishikesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410528, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aiimsrishikesh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12318], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12310, 12311, 12312, 12313, 12314, 12315, 12316, 12317, 12319], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Degree certificates issued by AIIMS Rishikesh in year 2018 can be pulled by students into their DigiLocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: AIIMS Rishikesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aiimsrishikesh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Degree certific<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:14.435Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12309, 12320, 12321, 12322, 12323, 12324], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:14.435Z\ninfo: { description:Degree certificates issued by AIIMS Rishikesh in year 2018 can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Rishikesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsrishikesh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsrishikesh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:14.435Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:14.435Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12325], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:14.435Z, info:{ description:Degree certificates issued by AIIMS Rishikesh in year 2018 can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Rishikesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsrishikesh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsrishikesh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:14.435Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aiimsrishikesh: DataRow\">apisetu.gov.in:aiimsrishikesh</span>", children: [12307, 12308, 12326], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:14.435Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:14.435Z, info:{ description:Degree certificates issued by AIIMS Rishikesh in year 2018 can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:AIIMS Rishikesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aiimsrishikesh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aiimsrishikesh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:14.435Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aiimsrishikesh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:14.435Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:20.096Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:20.096Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Marksheets and Degree Certificates of academic year 2017-18 issued by AKTU can be pulled by students into their DigiLocker accounts\">Marksheets and Degree Certificates of<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Dr. A. P. J. Abdul Kalam Technical University, Lucknow, Uttar Pradesh\">Dr. A. P. J. Abdul Kalam Technical Un<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410529, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["aktu"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12339], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12331, 12332, 12333, 12334, 12335, 12336, 12337, 12338, 12340], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Marksheets and Degree Certificates of academic year 2017-18 issued by AKTU can be pulled by students into their DigiLocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Dr. A. P. J. Abdul Kalam Technical University, Lucknow, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: aktu\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Marksheets and <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:20.096Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12330, 12341, 12342, 12343, 12344, 12345], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:20.096Z\ninfo: { description:Marksheets and Degree Certificates of academic year 2017-18 issued by AKTU can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Dr. A. P. J. Abdul Kalam Technical University, Lucknow, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aktu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aktu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:20.096Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:20.096Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12346], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:20.096Z, info:{ description:Marksheets and Degree Certificates of academic year 2017-18 issued by AKTU can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Dr. A. P. J. Abdul Kalam Technical University, Lucknow, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aktu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aktu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:20.096Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:aktu: DataRow\">apisetu.gov.in:aktu</span>", children: [12328, 12329, 12347], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:20.096Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:20.096Z, info:{ description:Marksheets and Degree Certificates of academic year 2017-18 issued by AKTU can be pulled by students into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Dr. A. P. J. Abdul Kalam Technical University, Lucknow, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/aktu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:aktu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:20.096Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/aktu/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:20.096Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:26.019Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:26.019Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Department of Agricultural Marketing, Karnataka.\">APIs provided by Department of Agricu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Agricultural Marketing, Karnataka\">Department of Agricultural Marketing,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410530, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apmcservices"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12360], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12352, 12353, 12354, 12355, 12356, 12357, 12358, 12359, 12361], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Department of Agricultural Marketing, Karnataka.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Agricultural Marketing, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: apmcservices\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:26.019Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12351, 12362, 12363, 12364, 12365, 12366], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:26.019Z\ninfo: { description:APIs provided by Department of Agricultural Marketing, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Agricultural Marketing, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/apmcservices.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:apmcservices, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:26.019Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:26.019Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12367], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:26.019Z, info:{ description:APIs provided by Department of Agricultural Marketing, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Agricultural Marketing, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/apmcservices.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:apmcservices, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:26.019Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:apmcservices: DataRow\">apisetu.gov.in:apmcservices</span>", children: [12349, 12350, 12368], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:26.019Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:26.019Z, info:{ description:APIs provided by Department of Agricultural Marketing, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Agricultural Marketing, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/apmcservices.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:apmcservices, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:26.019Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/apmcservices/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:26.019Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:31.823Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:31.823Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Agricultural Scientist Recruitment Board (ASRB) is now integrated with DigiLocker to publish Digital Marksheet and results for the National Eligibility Test (NET-I) & (NET-II) for the years of 2019. Concerned participants and students can get this certificates on their DigiLocker account.\">Agricultural Scientist Recruitment Bo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Agricultural Scientists Recruitment Board\">Agricultural Scientists Recruitment B<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410531, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["asrb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12381], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12373, 12374, 12375, 12376, 12377, 12378, 12379, 12380, 12382], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Agricultural Scientist Recruitment Board (ASRB) is now integrated with DigiLocker to publish Digital Marksheet and results for the National Eligibility Test (NET-I) & (NET-II) for the years of 2019. Concerned participants and students can get this certificates on their DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Agricultural Scientists Recruitment Board\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: asrb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Agricultural Sc<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:31.823Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12372, 12383, 12384, 12385, 12386, 12387], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:31.823Z\ninfo: { description:Agricultural Scientist Recruitment Board (ASRB) is now integrated with DigiLocker to publish Digital Marksheet and results for the National Eligibility Test (NET-I) & (NET-II) for the years of 2019. Concerned participants and students can get this certificates on their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Agricultural Scientists Recruitment Board, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/asrb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:asrb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:31.823Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:31.823Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12388], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:31.823Z, info:{ description:Agricultural Scientist Recruitment Board (ASRB) is now integrated with DigiLocker to publish Digital Marksheet and results for the National Eligibility Test (NET-I) & (NET-II) for the years of 2019. Concerned participants and students can get this certificates on their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Agricultural Scientists Recruitment Board, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/asrb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:asrb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:31.823Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:asrb: DataRow\">apisetu.gov.in:asrb</span>", children: [12370, 12371, 12389], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:31.823Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:31.823Z, info:{ description:Agricultural Scientist Recruitment Board (ASRB) is now integrated with DigiLocker to publish Digital Marksheet and results for the National Eligibility Test (NET-I) & (NET-II) for the years of 2019. Concerned participants and students can get this certificates on their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Agricultural Scientists Recruitment Board, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/asrb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:asrb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:31.823Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/asrb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:31.823Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:44.556Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:44.556Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance policies such as health, car, two wheeler, property etc. issued by BAGIC are available to be pulled by citizens.\">Insurance policies such as health, ca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Bajaj Allianz General Insurance Company Ltd. (BAGIC)\">Bajaj Allianz General Insurance Compa<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410532, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bajajallianz"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12402], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12394, 12395, 12396, 12397, 12398, 12399, 12400, 12401, 12403], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance policies such as health, car, two wheeler, property etc. issued by BAGIC are available to be pulled by citizens.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Bajaj Allianz General Insurance Company Ltd. (BAGIC)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bajajallianz\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:44.556Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12393, 12404, 12405, 12406, 12407, 12408], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:44.556Z\ninfo: { description:Insurance policies such as health, car, two wheeler, property etc. issued by BAGIC are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz General Insurance Company Ltd. (BAGIC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:44.556Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:44.556Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12409], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:44.556Z, info:{ description:Insurance policies such as health, car, two wheeler, property etc. issued by BAGIC are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz General Insurance Company Ltd. (BAGIC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:44.556Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bajajallianz: DataRow\">apisetu.gov.in:bajajallianz</span>", children: [12391, 12392, 12410], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:44.556Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:44.556Z, info:{ description:Insurance policies such as health, car, two wheeler, property etc. issued by BAGIC are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz General Insurance Company Ltd. (BAGIC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:44.556Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianz/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:44.556Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:50.112Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:50.112Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Policy Documents issued by Bajaj Allianz Life Insurance Co.Ltd (https://www.bajajallianzlife.com) can be pulled in user's DigiLocker account\">Policy Documents issued by Bajaj Alli<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Bajaj Allianz Life Insurance Company Ltd"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410533, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bajajallianzlife"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12423], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12415, 12416, 12417, 12418, 12419, 12420, 12421, 12422, 12424], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Policy Documents issued by Bajaj Allianz Life Insurance Co.Ltd (https://www.bajajallianzlife.com) can be pulled in user's DigiLocker account\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Bajaj Allianz Life Insurance Company Ltd\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bajajallianzlife\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Policy Document<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:50.112Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12414, 12425, 12426, 12427, 12428, 12429], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:50.112Z\ninfo: { description:Policy Documents issued by Bajaj Allianz Life Insurance Co.Ltd (https://www.bajajallianzlife.com) can be pulled in user's DigiLocker account, termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianzlife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianzlife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:50.112Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:50.112Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12430], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:50.112Z, info:{ description:Policy Documents issued by Bajaj Allianz Life Insurance Co.Ltd (https://www.bajajallianzlife.com) can be pulled in user's DigiLocker account, termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianzlife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianzlife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:50.112Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bajajallianzlife: DataRow\">apisetu.gov.in:bajajallianzlife</span>", children: [12412, 12413, 12431], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:50.112Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:50.112Z, info:{ description:Policy Documents issued by Bajaj Allianz Life Insurance Co.Ltd (https://www.bajajallianzlife.com) can be pulled in user's DigiLocker account, termsOfService:https://apisetu.gov.in/terms.php, title:Bajaj Allianz Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bajajallianzlife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bajajallianzlife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:50.112Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bajajallianzlife/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:50.112Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:55.687Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:55.687Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra.\">APIs provided by Dr. Babasaheb Ambedk<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra\">Dr. Babasaheb Ambedkar Research & Tra<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410534, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["barti"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12444], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12436, 12437, 12438, 12439, 12440, 12441, 12442, 12443, 12445], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: barti\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:03:55.687Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12435, 12446, 12447, 12448, 12449, 12450], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:55.687Z\ninfo: { description:APIs provided by Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/barti.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:barti, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:03:55.687Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:55.687Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12451], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:03:55.687Z, info:{ description:APIs provided by Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/barti.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:barti, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:55.687Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:barti: DataRow\">apisetu.gov.in:barti</span>", children: [12433, 12434, 12452], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:03:55.687Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:03:55.687Z, info:{ description:APIs provided by Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. Babasaheb Ambedkar Research & Training Institute, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/barti.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:barti, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:03:55.687Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/barti/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:03:55.687Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:01.516Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:01.516Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eSubscription Voucher for LPG connections provided by BPCL (https://bharatpetroleum.com/) are made available to citizens in their DigiLocker accounts.\">eSubscription Voucher for LPG connect<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ministry of Petroleum and Natural Gas(BPCL)\">Ministry of Petroleum and Natural Gas<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410535, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bharatpetroleum"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12465], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12457, 12458, 12459, 12460, 12461, 12462, 12463, 12464, 12466], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eSubscription Voucher for LPG connections provided by BPCL (https://bharatpetroleum.com/) are made available to citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Ministry of Petroleum and Natural Gas(BPCL)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bharatpetroleum\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eSubscription V<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:01.516Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12456, 12467, 12468, 12469, 12470, 12471], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:01.516Z\ninfo: { description:eSubscription Voucher for LPG connections provided by BPCL (https://bharatpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas(BPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bharatpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bharatpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:01.516Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:01.516Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12472], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:01.516Z, info:{ description:eSubscription Voucher for LPG connections provided by BPCL (https://bharatpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas(BPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bharatpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bharatpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:01.516Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bharatpetroleum: DataRow\">apisetu.gov.in:bharatpetroleum</span>", children: [12454, 12455, 12473], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:01.516Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:01.516Z, info:{ description:eSubscription Voucher for LPG connections provided by BPCL (https://bharatpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas(BPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bharatpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bharatpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:01.516Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bharatpetroleum/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:01.516Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:07.084Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:07.084Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Bharti AXA General Insurance Company Ltd..\">APIs provided by Bharti AXA General I<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Bharti AXA General Insurance Company Ltd.\">Bharti AXA General Insurance Company <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410536, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bhartiaxagi"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12486], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12478, 12479, 12480, 12481, 12482, 12483, 12484, 12485, 12487], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Bharti AXA General Insurance Company Ltd..\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Bharti AXA General Insurance Company Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bhartiaxagi\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:07.084Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12477, 12488, 12489, 12490, 12491, 12492], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:07.084Z\ninfo: { description:APIs provided by Bharti AXA General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Bharti AXA General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhartiaxagi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhartiaxagi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:07.084Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:07.084Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12493], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:07.084Z, info:{ description:APIs provided by Bharti AXA General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Bharti AXA General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhartiaxagi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhartiaxagi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:07.084Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bhartiaxagi: DataRow\">apisetu.gov.in:bhartiaxagi</span>", children: [12475, 12476, 12494], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:07.084Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:07.084Z, info:{ description:APIs provided by Bharti AXA General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Bharti AXA General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhartiaxagi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhartiaxagi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:07.084Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhartiaxagi/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:07.084Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:12.947Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:12.947Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Department of Pension and Pensioners Welfare.\">APIs provided by Department of Pensio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Pension and Pensioners Welfare\">Department of Pension and Pensioners <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410537, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bhavishya"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12507], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12499, 12500, 12501, 12502, 12503, 12504, 12505, 12506, 12508], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Department of Pension and Pensioners Welfare.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Pension and Pensioners Welfare\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bhavishya\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:12.947Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12498, 12509, 12510, 12511, 12512, 12513], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:12.947Z\ninfo: { description:APIs provided by Department of Pension and Pensioners Welfare., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Pension and Pensioners Welfare, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhavishya.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhavishya, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:12.947Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:12.947Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12514], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:12.947Z, info:{ description:APIs provided by Department of Pension and Pensioners Welfare., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Pension and Pensioners Welfare, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhavishya.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhavishya, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:12.947Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bhavishya: DataRow\">apisetu.gov.in:bhavishya</span>", children: [12496, 12497, 12515], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:12.947Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:12.947Z, info:{ description:APIs provided by Department of Pension and Pensioners Welfare., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Pension and Pensioners Welfare, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bhavishya.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bhavishya, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:12.947Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bhavishya/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:12.947Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:18.955Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:18.955Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Bihar School Examination Board, Patna (http://biharboardonline.bihar.gov.in) has made available Class X (2018) marksheets and provisional certificates, which can be pulled by students into their accounts.\">Bihar School Examination Board, Patna<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Bihar State Board of School Examination, Bihar\">Bihar State Board of School Examinati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410538, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["biharboard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12528], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12520, 12521, 12522, 12523, 12524, 12525, 12526, 12527, 12529], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Bihar School Examination Board, Patna (http://biharboardonline.bihar.gov.in) has made available Class X (2018) marksheets and provisional certificates, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Bihar State Board of School Examination, Bihar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: biharboard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Bihar School Ex<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:18.955Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12519, 12530, 12531, 12532, 12533, 12534], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:18.955Z\ninfo: { description:Bihar School Examination Board, Patna (http://biharboardonline.bihar.gov.in) has made available Class X (2018) marksheets and provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Bihar State Board of School Examination, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/biharboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:biharboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:18.955Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:18.955Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12535], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:18.955Z, info:{ description:Bihar School Examination Board, Patna (http://biharboardonline.bihar.gov.in) has made available Class X (2018) marksheets and provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Bihar State Board of School Examination, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/biharboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:biharboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:18.955Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:biharboard: DataRow\">apisetu.gov.in:biharboard</span>", children: [12517, 12518, 12536], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:18.955Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:18.955Z, info:{ description:Bihar School Examination Board, Patna (http://biharboardonline.bihar.gov.in) has made available Class X (2018) marksheets and provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Bihar State Board of School Examination, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/biharboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:biharboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:18.955Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/biharboard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:18.955Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:24.765Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:24.765Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Biju Patnaik University Of Technology, Odisha (http://www.bput.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2005-2019 is available.\">Biju Patnaik University Of Technology<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Biju Patnaik University Of Technology, Odisha\">Biju Patnaik University Of Technology<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410539, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bput"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12549], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12541, 12542, 12543, 12544, 12545, 12546, 12547, 12548, 12550], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Biju Patnaik University Of Technology, Odisha (http://www.bput.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2005-2019 is available.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Biju Patnaik University Of Technology, Odisha\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bput\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Biju Patnaik Un<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:24.765Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12540, 12551, 12552, 12553, 12554, 12555], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:24.765Z\ninfo: { description:Biju Patnaik University Of Technology, Odisha (http://www.bput.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2005-2019 is available., termsOfService:https://apisetu.gov.in/terms.php, title:Biju Patnaik University Of Technology, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bput.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bput, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:24.765Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:24.765Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12556], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:24.765Z, info:{ description:Biju Patnaik University Of Technology, Odisha (http://www.bput.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2005-2019 is available., termsOfService:https://apisetu.gov.in/terms.php, title:Biju Patnaik University Of Technology, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bput.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bput, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:24.765Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bput: DataRow\">apisetu.gov.in:bput</span>", children: [12538, 12539, 12557], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:24.765Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:24.765Z, info:{ description:Biju Patnaik University Of Technology, Odisha (http://www.bput.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2005-2019 is available., termsOfService:https://apisetu.gov.in/terms.php, title:Biju Patnaik University Of Technology, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bput.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bput, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:24.765Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bput/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:24.765Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:30.334Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:30.334Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of School Education, Haryana (http://www.bseh.org.in/home/) has made available 2016-2019 Class XII & Class X results in DigiLocker, which can be pulled by students into their accounts.\">Board of School Education, Haryana (h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Haryana State Board of School Education, Haryana\">Haryana State Board of School Educati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410540, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["bsehr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12570], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12562, 12563, 12564, 12565, 12566, 12567, 12568, 12569, 12571], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of School Education, Haryana (http://www.bseh.org.in/home/) has made available 2016-2019 Class XII & Class X results in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Haryana State Board of School Education, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: bsehr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of School<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:30.334Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12561, 12572, 12573, 12574, 12575, 12576], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:30.334Z\ninfo: { description:Board of School Education, Haryana (http://www.bseh.org.in/home/) has made available 2016-2019 Class XII & Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of School Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bsehr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bsehr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:30.334Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:30.334Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12577], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:30.334Z, info:{ description:Board of School Education, Haryana (http://www.bseh.org.in/home/) has made available 2016-2019 Class XII & Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of School Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bsehr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bsehr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:30.334Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:bsehr: DataRow\">apisetu.gov.in:bsehr</span>", children: [12559, 12560, 12578], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:30.334Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:30.334Z, info:{ description:Board of School Education, Haryana (http://www.bseh.org.in/home/) has made available 2016-2019 Class XII & Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of School Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/bsehr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:bsehr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:30.334Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/bsehr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:30.334Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:49.615Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:49.615Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"CBSE (http://www.cbse.nic.in/) is issuing marksheets, passing certificates, migration certificates etc. through DigiLocker. These are either pushed, or can be pulled by students into their DigiLocker accounts. Currently available - 2004 - 2020 [Class XII], 2004 - 2020 [Class X], 2017 (NEET Rank Letter & Marksheet), 2016 (NEET Rank Letter), 2018 December (CTET Eligibility Certificate & Marksheet).\">CBSE (http://www.cbse.nic.in/) is iss<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Central Board of Secondary Education"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410541, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cbse"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12591], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12583, 12584, 12585, 12586, 12587, 12588, 12589, 12590, 12592], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: CBSE (http://www.cbse.nic.in/) is issuing marksheets, passing certificates, migration certificates etc. through DigiLocker. These are either pushed, or can be pulled by students into their DigiLocker accounts. Currently available - 2004 - 2020 [Class XII], 2004 - 2020 [Class X], 2017 (NEET Rank Letter & Marksheet), 2016 (NEET Rank Letter), 2018 December (CTET Eligibility Certificate & Marksheet).\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Central Board of Secondary Education\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: cbse\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>CBSE (http://ww<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:49.615Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12582, 12593, 12594, 12595, 12596, 12597], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:49.615Z\ninfo: { description:CBSE (http://www.cbse.nic.in/) is issuing marksheets, passing certificates, migration certificates etc. through DigiLocker. These are either pushed, or can be pulled by students into their DigiLocker accounts. Currently available - 2004 - 2020 [Class XII], 2004 - 2020 [Class X], 2017 (NEET Rank Letter & Marksheet), 2016 (NEET Rank Letter), 2018 December (CTET Eligibility Certificate & Marksheet)., termsOfService:https://apisetu.gov.in/terms.php, title:Central Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:49.615Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:49.615Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12598], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:49.615Z, info:{ description:CBSE (http://www.cbse.nic.in/) is issuing marksheets, passing certificates, migration certificates etc. through DigiLocker. These are either pushed, or can be pulled by students into their DigiLocker accounts. Currently available - 2004 - 2020 [Class XII], 2004 - 2020 [Class X], 2017 (NEET Rank Letter & Marksheet), 2016 (NEET Rank Letter), 2018 December (CTET Eligibility Certificate & Marksheet)., termsOfService:https://apisetu.gov.in/terms.php, title:Central Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:49.615Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:cbse: DataRow\">apisetu.gov.in:cbse</span>", children: [12580, 12581, 12599], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:49.615Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:49.615Z, info:{ description:CBSE (http://www.cbse.nic.in/) is issuing marksheets, passing certificates, migration certificates etc. through DigiLocker. These are either pushed, or can be pulled by students into their DigiLocker accounts. Currently available - 2004 - 2020 [Class XII], 2004 - 2020 [Class X], 2017 (NEET Rank Letter & Marksheet), 2016 (NEET Rank Letter), 2018 December (CTET Eligibility Certificate & Marksheet)., termsOfService:https://apisetu.gov.in/terms.php, title:Central Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:49.615Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:49.615Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:56.524Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:56.524Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"CBBSE (http://cgbse.nic.in) is issuing marksheets through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available -2001,2003 - 2017 Class X and 2001 - 2017 Class XII .\">CBBSE (http://cgbse.nic.in) is issuin<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Chhattisgarh State Board of Secondary Education, Chhattisgarh\">Chhattisgarh State Board of Secondary<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410542, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cgbse"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12612], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12604, 12605, 12606, 12607, 12608, 12609, 12610, 12611, 12613], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: CBBSE (http://cgbse.nic.in) is issuing marksheets through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available -2001,2003 - 2017 Class X and 2001 - 2017 Class XII .\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Chhattisgarh State Board of Secondary Education, Chhattisgarh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: cgbse\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>CBBSE (http://c<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:04:56.524Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12603, 12614, 12615, 12616, 12617, 12618], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:56.524Z\ninfo: { description:CBBSE (http://cgbse.nic.in) is issuing marksheets through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available -2001,2003 - 2017 Class X and 2001 - 2017 Class XII ., termsOfService:https://apisetu.gov.in/terms.php, title:Chhattisgarh State Board of Secondary Education, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cgbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cgbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:04:56.524Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:56.524Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12619], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:04:56.524Z, info:{ description:CBBSE (http://cgbse.nic.in) is issuing marksheets through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available -2001,2003 - 2017 Class X and 2001 - 2017 Class XII ., termsOfService:https://apisetu.gov.in/terms.php, title:Chhattisgarh State Board of Secondary Education, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cgbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cgbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:56.524Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:cgbse: DataRow\">apisetu.gov.in:cgbse</span>", children: [12601, 12602, 12620], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:04:56.524Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:04:56.524Z, info:{ description:CBBSE (http://cgbse.nic.in) is issuing marksheets through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available -2001,2003 - 2017 Class X and 2001 - 2017 Class XII ., termsOfService:https://apisetu.gov.in/terms.php, title:Chhattisgarh State Board of Secondary Education, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cgbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cgbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:04:56.524Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cgbse/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:04:56.524Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:02.667Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:02.667Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Birth and Death certificates from 1934-till date, as provided by Greater Chennai Corporation (http://www.chennaicorporation.gov.in), can be downloaded in citizen's DigiLocker account.\">Birth and Death certificates from 193<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Greater Chennai Corporation, Tamil Nadu"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410543, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["chennaicorp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12633], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12625, 12626, 12627, 12628, 12629, 12630, 12631, 12632, 12634], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Birth and Death certificates from 1934-till date, as provided by Greater Chennai Corporation (http://www.chennaicorporation.gov.in), can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Greater Chennai Corporation, Tamil Nadu\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: chennaicorp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Birth and Death<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:02.667Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12624, 12635, 12636, 12637, 12638, 12639], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:02.667Z\ninfo: { description:Birth and Death certificates from 1934-till date, as provided by Greater Chennai Corporation (http://www.chennaicorporation.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Greater Chennai Corporation, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chennaicorp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chennaicorp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:02.667Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:02.667Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12640], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:02.667Z, info:{ description:Birth and Death certificates from 1934-till date, as provided by Greater Chennai Corporation (http://www.chennaicorporation.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Greater Chennai Corporation, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chennaicorp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chennaicorp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:02.667Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:chennaicorp: DataRow\">apisetu.gov.in:chennaicorp</span>", children: [12622, 12623, 12641], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:02.667Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:02.667Z, info:{ description:Birth and Death certificates from 1934-till date, as provided by Greater Chennai Corporation (http://www.chennaicorporation.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Greater Chennai Corporation, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chennaicorp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chennaicorp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:02.667Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chennaicorp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:02.667Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:09.764Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:09.764Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Degree Certificates of various courses issued by Chitkara University can be downloaded in citizen's DigiLocker account.\">Degree Certificates of various course<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Chitkara University"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410544, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["chitkarauniversity"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12654], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12646, 12647, 12648, 12649, 12650, 12651, 12652, 12653, 12655], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Degree Certificates of various courses issued by Chitkara University can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Chitkara University\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: chitkarauniversity\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Degree Certific<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:09.764Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12645, 12656, 12657, 12658, 12659, 12660], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:09.764Z\ninfo: { description:Degree Certificates of various courses issued by Chitkara University can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Chitkara University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chitkarauniversity.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chitkarauniversity, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:09.764Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:09.764Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12661], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:09.764Z, info:{ description:Degree Certificates of various courses issued by Chitkara University can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Chitkara University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chitkarauniversity.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chitkarauniversity, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:09.764Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:chitkarauniversity: DataRow\">apisetu.gov.in:chitkarauniversity</span>", children: [12643, 12644, 12662], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:09.764Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:09.764Z, info:{ description:Degree Certificates of various courses issued by Chitkara University can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Chitkara University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/chitkarauniversity.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:chitkarauniversity, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:09.764Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/chitkarauniversity/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:09.764Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:15.378Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:15.378Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Cholamandalam MS General Insurance Company Ltd..\">APIs provided by Cholamandalam MS Gen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Cholamandalam MS General Insurance Company Ltd.\">Cholamandalam MS General Insurance Co<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410545, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cholainsurance"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12675], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12667, 12668, 12669, 12670, 12671, 12672, 12673, 12674, 12676], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Cholamandalam MS General Insurance Company Ltd..\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Cholamandalam MS General Insurance Company Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: cholainsurance\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:15.378Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12666, 12677, 12678, 12679, 12680, 12681], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:15.378Z\ninfo: { description:APIs provided by Cholamandalam MS General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Cholamandalam MS General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cholainsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cholainsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:15.378Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:15.378Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12682], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:15.378Z, info:{ description:APIs provided by Cholamandalam MS General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Cholamandalam MS General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cholainsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cholainsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:15.378Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:cholainsurance: DataRow\">apisetu.gov.in:cholainsurance</span>", children: [12664, 12665, 12683], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:15.378Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:15.378Z, info:{ description:APIs provided by Cholamandalam MS General Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Cholamandalam MS General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cholainsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cholainsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:15.378Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cholainsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:15.378Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:21.354Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:21.354Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"CISCE (http://www.cisce.org/) is issuing marksheets, passing certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2014-2019 (marksheets, passing certificates of ICSE & ISC and migration certificates of ISC).\">CISCE (http://www.cisce.org/) is issu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["CISCE"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410546, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cisce"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12696], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12688, 12689, 12690, 12691, 12692, 12693, 12694, 12695, 12697], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: CISCE (http://www.cisce.org/) is issuing marksheets, passing certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2014-2019 (marksheets, passing certificates of ICSE & ISC and migration certificates of ISC).\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: CISCE\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: cisce\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>CISCE (http://w<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:21.354Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12687, 12698, 12699, 12700, 12701, 12702], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:21.354Z\ninfo: { description:CISCE (http://www.cisce.org/) is issuing marksheets, passing certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2014-2019 (marksheets, passing certificates of ICSE & ISC and migration certificates of ISC)., termsOfService:https://apisetu.gov.in/terms.php, title:CISCE, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cisce.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cisce, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:21.354Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:21.354Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12703], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:21.354Z, info:{ description:CISCE (http://www.cisce.org/) is issuing marksheets, passing certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2014-2019 (marksheets, passing certificates of ICSE & ISC and migration certificates of ISC)., termsOfService:https://apisetu.gov.in/terms.php, title:CISCE, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cisce.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cisce, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:21.354Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:cisce: DataRow\">apisetu.gov.in:cisce</span>", children: [12685, 12686, 12704], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:21.354Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:21.354Z, info:{ description:CISCE (http://www.cisce.org/) is issuing marksheets, passing certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2014-2019 (marksheets, passing certificates of ICSE & ISC and migration certificates of ISC)., termsOfService:https://apisetu.gov.in/terms.php, title:CISCE, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cisce.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cisce, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:21.354Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cisce/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:21.354Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:27.671Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:27.671Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ration Cards issued by The Department of Civil Supplies functions under the Department of Food, Civil Supplies and Consumer Affairs of the Government of Kerala. (https://civilsupplieskerala.gov.in/) are available for download on DigiLocker.\">Ration Cards issued by The Department<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Civil Supplies Department, Kerala"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410547, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["civilsupplieskerala"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12717], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12709, 12710, 12711, 12712, 12713, 12714, 12715, 12716, 12718], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Ration Cards issued by The Department of Civil Supplies functions under the Department of Food, Civil Supplies and Consumer Affairs of the Government of Kerala. (https://civilsupplieskerala.gov.in/) are available for download on DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Civil Supplies Department, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: civilsupplieskerala\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Ration Cards is<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:27.671Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12708, 12719, 12720, 12721, 12722, 12723], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:27.671Z\ninfo: { description:Ration Cards issued by The Department of Civil Supplies functions under the Department of Food, Civil Supplies and Consumer Affairs of the Government of Kerala. (https://civilsupplieskerala.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Civil Supplies Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/civilsupplieskerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:civilsupplieskerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:27.671Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:27.671Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12724], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:27.671Z, info:{ description:Ration Cards issued by The Department of Civil Supplies functions under the Department of Food, Civil Supplies and Consumer Affairs of the Government of Kerala. (https://civilsupplieskerala.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Civil Supplies Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/civilsupplieskerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:civilsupplieskerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:27.671Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:civilsupplieskerala: DataRow\">apisetu.gov.in:civilsupplieskerala</span>", children: [12706, 12707, 12725], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:27.671Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:27.671Z, info:{ description:Ration Cards issued by The Department of Civil Supplies functions under the Department of Food, Civil Supplies and Consumer Affairs of the Government of Kerala. (https://civilsupplieskerala.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Civil Supplies Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/civilsupplieskerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:civilsupplieskerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:27.671Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/civilsupplieskerala/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:27.671Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:44.247Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:44.247Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Computer Proficiency Certification Exam (https://cpct.mp.gov.in) is mandatory for data entry/IT Operator/Assistant Grade-3/steno/shorthand/typist and other similar Permanent/Contractual positions in the departments, corporations and agencies in MP. The CPCT Score Card of 2016 can be pulled into citizens' DigiLocker accounts.\">Computer Proficiency Certification Ex<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["CPCT-MAPIT, Madhya Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410548, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["cpctmp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12738], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12730, 12731, 12732, 12733, 12734, 12735, 12736, 12737, 12739], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Computer Proficiency Certification Exam (https://cpct.mp.gov.in) is mandatory for data entry/IT Operator/Assistant Grade-3/steno/shorthand/typist and other similar Permanent/Contractual positions in the departments, corporations and agencies in MP. The CPCT Score Card of 2016 can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: CPCT-MAPIT, Madhya Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: cpctmp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Computer Profic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:44.247Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12729, 12740, 12741, 12742, 12743, 12744], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:44.247Z\ninfo: { description:Computer Proficiency Certification Exam (https://cpct.mp.gov.in) is mandatory for data entry/IT Operator/Assistant Grade-3/steno/shorthand/typist and other similar Permanent/Contractual positions in the departments, corporations and agencies in MP. The CPCT Score Card of 2016 can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:CPCT-MAPIT, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cpctmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cpctmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:44.247Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:44.247Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12745], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:44.247Z, info:{ description:Computer Proficiency Certification Exam (https://cpct.mp.gov.in) is mandatory for data entry/IT Operator/Assistant Grade-3/steno/shorthand/typist and other similar Permanent/Contractual positions in the departments, corporations and agencies in MP. The CPCT Score Card of 2016 can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:CPCT-MAPIT, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cpctmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cpctmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:44.247Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:cpctmp: DataRow\">apisetu.gov.in:cpctmp</span>", children: [12727, 12728, 12746], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:44.247Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:44.247Z, info:{ description:Computer Proficiency Certification Exam (https://cpct.mp.gov.in) is mandatory for data entry/IT Operator/Assistant Grade-3/steno/shorthand/typist and other similar Permanent/Contractual positions in the departments, corporations and agencies in MP. The CPCT Score Card of 2016 can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:CPCT-MAPIT, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/cpctmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:cpctmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:44.247Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/cpctmp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:44.247Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:50.105Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:50.105Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Certificates issued under Pradhan Mantri Gramin Digital Saksharta Abhiyaan (PMGDISHA) (https://www.pmgdisha.in) scheme enrolled at authorised Training Centres/ CSCs are made available to citizens in their DigiLocker accounts.\">Certificates issued under Pradhan Man<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Common Service Centre (CSC)"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410549, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["csc"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12759], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12751, 12752, 12753, 12754, 12755, 12756, 12757, 12758, 12760], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Certificates issued under Pradhan Mantri Gramin Digital Saksharta Abhiyaan (PMGDISHA) (https://www.pmgdisha.in) scheme enrolled at authorised Training Centres/ CSCs are made available to citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Common Service Centre (CSC)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: csc\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Certificates is<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:05:50.105Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12750, 12761, 12762, 12763, 12764, 12765], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:50.105Z\ninfo: { description:Certificates issued under Pradhan Mantri Gramin Digital Saksharta Abhiyaan (PMGDISHA) (https://www.pmgdisha.in) scheme enrolled at authorised Training Centres/ CSCs are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Common Service Centre (CSC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/csc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:csc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:05:50.105Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:50.105Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12766], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:05:50.105Z, info:{ description:Certificates issued under Pradhan Mantri Gramin Digital Saksharta Abhiyaan (PMGDISHA) (https://www.pmgdisha.in) scheme enrolled at authorised Training Centres/ CSCs are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Common Service Centre (CSC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/csc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:csc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:50.105Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:csc: DataRow\">apisetu.gov.in:csc</span>", children: [12748, 12749, 12767], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:05:50.105Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:05:50.105Z, info:{ description:Certificates issued under Pradhan Mantri Gramin Digital Saksharta Abhiyaan (PMGDISHA) (https://www.pmgdisha.in) scheme enrolled at authorised Training Centres/ CSCs are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Common Service Centre (CSC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/csc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:csc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:05:50.105Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/csc/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:05:50.105Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:02.634Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:02.634Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands.\">APIs provided by Dr. B.R. Ambedkar In<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands\">Dr. B.R. Ambedkar Institute of Techno<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410550, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dbraitandaman"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12780], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12772, 12773, 12774, 12775, 12776, 12777, 12778, 12779, 12781], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: dbraitandaman\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:02.634Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12771, 12782, 12783, 12784, 12785, 12786], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:02.634Z\ninfo: { description:APIs provided by Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dbraitandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dbraitandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:02.634Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:02.634Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12787], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:02.634Z, info:{ description:APIs provided by Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dbraitandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dbraitandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:02.634Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:dbraitandaman: DataRow\">apisetu.gov.in:dbraitandaman</span>", children: [12769, 12770, 12788], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:02.634Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:02.634Z, info:{ description:APIs provided by Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands., termsOfService:https://apisetu.gov.in/terms.php, title:Dr. B.R. Ambedkar Institute of Technology,Andaman & Nicobar Islands, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dbraitandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dbraitandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:02.634Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dbraitandaman/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:02.634Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:09.232Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:09.232Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Tamilnadu - Government Examinations (https://dgecert.tn.nic.in/) is issuing Mark Certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently Class X (2016-2019) and XII (2016-2018) marksheets are available.\">Tamilnadu - Government Examinations (<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Tamil Nadu State Board (Tamil Nadu Directorate of Government Examinations), Tamil Nadu\">Tamil Nadu State Board (Tamil Nadu Di<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410551, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dgecerttn"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12801], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12793, 12794, 12795, 12796, 12797, 12798, 12799, 12800, 12802], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Tamilnadu - Government Examinations (https://dgecert.tn.nic.in/) is issuing Mark Certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently Class X (2016-2019) and XII (2016-2018) marksheets are available.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Tamil Nadu State Board (Tamil Nadu Directorate of Government Examinations), Tamil Nadu\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: dgecerttn\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Tamilnadu - Gov<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:09.232Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12792, 12803, 12804, 12805, 12806, 12807], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:09.232Z\ninfo: { description:Tamilnadu - Government Examinations (https://dgecert.tn.nic.in/) is issuing Mark Certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently Class X (2016-2019) and XII (2016-2018) marksheets are available., termsOfService:https://apisetu.gov.in/terms.php, title:Tamil Nadu State Board (Tamil Nadu Directorate of Government Examinations), Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgecerttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgecerttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:09.232Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:09.232Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12808], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:09.232Z, info:{ description:Tamilnadu - Government Examinations (https://dgecert.tn.nic.in/) is issuing Mark Certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently Class X (2016-2019) and XII (2016-2018) marksheets are available., termsOfService:https://apisetu.gov.in/terms.php, title:Tamil Nadu State Board (Tamil Nadu Directorate of Government Examinations), Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgecerttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgecerttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:09.232Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:dgecerttn: DataRow\">apisetu.gov.in:dgecerttn</span>", children: [12790, 12791, 12809], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:09.232Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:09.232Z, info:{ description:Tamilnadu - Government Examinations (https://dgecert.tn.nic.in/) is issuing Mark Certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently Class X (2016-2019) and XII (2016-2018) marksheets are available., termsOfService:https://apisetu.gov.in/terms.php, title:Tamil Nadu State Board (Tamil Nadu Directorate of Government Examinations), Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgecerttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgecerttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:09.232Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgecerttn/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:09.232Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:14.776Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:14.776Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Directorate General of Foreign Trade (DGFT)\">Directorate General of Foreign Trade <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.dgft.gov.in/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [12814, 12815], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Directorate General of Foreign Trade (DGFT)\nurl: https://www.dgft.gov.in/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Directorate General o<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Importer-Exporter Code (IEC), issued by Directorate General of Foreign Trade (DGFT), is a key business identification number which is mandatory for Exports or Imports. This API can be used to get details of a importer-exporter by importer-exporter code.\">The Importer-Exporter Code (IEC), iss<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://ndh.digitallocker.gov.in/terms.php\">https://ndh.digitallocker.gov.in/term<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Importer-Exporter Details API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410552, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dgft"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12825], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12816, 12817, 12818, 12819, 12820, 12821, 12822, 12823, 12824, 12826], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:Directorate General of Foreign Trade (DGFT), url:https://www.dgft.gov.in/ }\ndescription: The Importer-Exporter Code (IEC), issued by Directorate General of Foreign Trade (DGFT), is a key business identification number which is mandatory for Exports or Imports. This API can be used to get details of a importer-exporter by importer-exporter code.\ntermsOfService: https://ndh.digitallocker.gov.in/terms.php\ntitle: Importer-Exporter Details API\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: dgft\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Dir<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:14.776Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12813, 12827, 12828, 12829, 12830, 12831], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:14.776Z\ninfo: { contact:{ name:Directorate General of Foreign Trade (DGFT), url:https://www.dgft.gov.in/ }, description:The Importer-Exporter Code (IEC), issued by Directorate General of Foreign Trade (DGFT), is a key business identification number which is mandatory for Exports or Imports. This API can be used to get details of a importer-exporter by importer-exporter code., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:Importer-Exporter Details API, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgft.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgft, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:14.776Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:14.776Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12832], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:14.776Z, info:{ contact:{ name:Directorate General of Foreign Trade (DGFT), url:https://www.dgft.gov.in/ }, description:The Importer-Exporter Code (IEC), issued by Directorate General of Foreign Trade (DGFT), is a key business identification number which is mandatory for Exports or Imports. This API can be used to get details of a importer-exporter by importer-exporter code., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:Importer-Exporter Details API, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgft.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgft, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:14.776Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:dgft: DataRow\">apisetu.gov.in:dgft</span>", children: [12811, 12812, 12833], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:14.776Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:14.776Z, info:{ contact:{ name:Directorate General of Foreign Trade (DGFT), url:https://www.dgft.gov.in/ }, description:The Importer-Exporter Code (IEC), issued by Directorate General of Foreign Trade (DGFT), is a key business identification number which is mandatory for Exports or Imports. This API can be used to get details of a importer-exporter by importer-exporter code., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:Importer-Exporter Details API, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dgft.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dgft, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:14.776Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dgft/3.0.0/ope... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:14.776Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:20.843Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:20.843Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available HSE Certificate cum Marklist of MARCH 2020, which can be pulled by students into their Digilocker account\">Board of Higher Secondary Examination<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"BOARD OF HIGHER SECONDARY EXAMINATION, KERALA, Kerala\">BOARD OF HIGHER SECONDARY EXAMINATION<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410553, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dhsekerala"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12846], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12838, 12839, 12840, 12841, 12842, 12843, 12844, 12845, 12847], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available HSE Certificate cum Marklist of MARCH 2020, which can be pulled by students into their Digilocker account\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: BOARD OF HIGHER SECONDARY EXAMINATION, KERALA, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: dhsekerala\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of Higher<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:20.843Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12837, 12848, 12849, 12850, 12851, 12852], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:20.843Z\ninfo: { description:Board of Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available HSE Certificate cum Marklist of MARCH 2020, which can be pulled by students into their Digilocker account, termsOfService:https://apisetu.gov.in/terms.php, title:BOARD OF HIGHER SECONDARY EXAMINATION, KERALA, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dhsekerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dhsekerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:20.843Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:20.843Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12853], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:20.843Z, info:{ description:Board of Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available HSE Certificate cum Marklist of MARCH 2020, which can be pulled by students into their Digilocker account, termsOfService:https://apisetu.gov.in/terms.php, title:BOARD OF HIGHER SECONDARY EXAMINATION, KERALA, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dhsekerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dhsekerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:20.843Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:dhsekerala: DataRow\">apisetu.gov.in:dhsekerala</span>", children: [12835, 12836, 12854], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:20.843Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:20.843Z, info:{ description:Board of Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available HSE Certificate cum Marklist of MARCH 2020, which can be pulled by students into their Digilocker account, termsOfService:https://apisetu.gov.in/terms.php, title:BOARD OF HIGHER SECONDARY EXAMINATION, KERALA, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dhsekerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dhsekerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:20.843Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dhsekerala/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:20.843Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:26.190Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:26.190Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Inner Line Permit (eILP) of Government of Arunachal Pradesh (http://arunachalilp.com/) is available on DigiLocker.\">Inner Line Permit (eILP) of Governmen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of IT and Communication, Arunachal Pradesh\">Department of IT and Communication, A<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410554, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ditarunachal"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12867], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12859, 12860, 12861, 12862, 12863, 12864, 12865, 12866, 12868], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Inner Line Permit (eILP) of Government of Arunachal Pradesh (http://arunachalilp.com/) is available on DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of IT and Communication, Arunachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ditarunachal\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Inner Line Perm<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:26.190Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12858, 12869, 12870, 12871, 12872, 12873], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:26.190Z\ninfo: { description:Inner Line Permit (eILP) of Government of Arunachal Pradesh (http://arunachalilp.com/) is available on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and Communication, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditarunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditarunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:26.190Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:26.190Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12874], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:26.190Z, info:{ description:Inner Line Permit (eILP) of Government of Arunachal Pradesh (http://arunachalilp.com/) is available on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and Communication, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditarunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditarunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:26.190Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ditarunachal: DataRow\">apisetu.gov.in:ditarunachal</span>", children: [12856, 12857, 12875], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:26.190Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:26.190Z, info:{ description:Inner Line Permit (eILP) of Government of Arunachal Pradesh (http://arunachalilp.com/) is available on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and Communication, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditarunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditarunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:26.190Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditarunachal/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:26.190Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:32.426Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:32.426Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Chandigarh(http://chdservices.gov.in/) is the online service delivery portal for Chandigarh Administration. Certain documents issued by it (e.g. Senior Citizen Identity Card) can be pulled into citizens' DigiLocker accounts.\">eDistrict Chandigarh(http://chdservic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eDistrict Chandigarh, Chandigarh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410555, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ditch"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12888], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12880, 12881, 12882, 12883, 12884, 12885, 12886, 12887, 12889], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Chandigarh(http://chdservices.gov.in/) is the online service delivery portal for Chandigarh Administration. Certain documents issued by it (e.g. Senior Citizen Identity Card) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Chandigarh, Chandigarh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ditch\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Chand<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:32.426Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12879, 12890, 12891, 12892, 12893, 12894], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:32.426Z\ninfo: { description:eDistrict Chandigarh(http://chdservices.gov.in/) is the online service delivery portal for Chandigarh Administration. Certain documents issued by it (e.g. Senior Citizen Identity Card) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Chandigarh, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:32.426Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:32.426Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12895], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:32.426Z, info:{ description:eDistrict Chandigarh(http://chdservices.gov.in/) is the online service delivery portal for Chandigarh Administration. Certain documents issued by it (e.g. Senior Citizen Identity Card) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Chandigarh, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:32.426Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ditch: DataRow\">apisetu.gov.in:ditch</span>", children: [12877, 12878, 12896], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:32.426Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:32.426Z, info:{ description:eDistrict Chandigarh(http://chdservices.gov.in/) is the online service delivery portal for Chandigarh Administration. Certain documents issued by it (e.g. Senior Citizen Identity Card) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Chandigarh, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ditch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ditch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:32.426Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ditch/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:32.426Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:38.794Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:38.794Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Tripura (http://edistrict.tripura.gov.in/) is the online service delivery portal for TripuraState Govt. Certain documents issued by it (e.g. Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts.\">eDistrict Tripura (http://edistrict.t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Directorate of Information Technology, Government of Tripura, Tripura\">Directorate of Information Technology<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410556, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["dittripura"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12909], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12901, 12902, 12903, 12904, 12905, 12906, 12907, 12908, 12910], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Tripura (http://edistrict.tripura.gov.in/) is the online service delivery portal for TripuraState Govt. Certain documents issued by it (e.g. Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Directorate of Information Technology, Government of Tripura, Tripura\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: dittripura\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Tripu<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:38.794Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12900, 12911, 12912, 12913, 12914, 12915], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:38.794Z\ninfo: { description:eDistrict Tripura (http://edistrict.tripura.gov.in/) is the online service delivery portal for TripuraState Govt. Certain documents issued by it (e.g. Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Information Technology, Government of Tripura, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dittripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dittripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:38.794Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:38.794Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12916], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:38.794Z, info:{ description:eDistrict Tripura (http://edistrict.tripura.gov.in/) is the online service delivery portal for TripuraState Govt. Certain documents issued by it (e.g. Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Information Technology, Government of Tripura, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dittripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dittripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:38.794Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:dittripura: DataRow\">apisetu.gov.in:dittripura</span>", children: [12898, 12899, 12917], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:38.794Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:38.794Z, info:{ description:eDistrict Tripura (http://edistrict.tripura.gov.in/) is the online service delivery portal for TripuraState Govt. Certain documents issued by it (e.g. Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Information Technology, Government of Tripura, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/dittripura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:dittripura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:38.794Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/dittripura/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:38.794Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:44.852Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:44.852Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"University of Delhi (http://www.du.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2017 is available.\">University of Delhi (http://www.du.ac<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["University Of Delhi"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410557, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["duexam"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12930], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12922, 12923, 12924, 12925, 12926, 12927, 12928, 12929, 12931], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: University of Delhi (http://www.du.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2017 is available.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: University Of Delhi\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: duexam\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>University of D<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:44.852Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12921, 12932, 12933, 12934, 12935, 12936], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:44.852Z\ninfo: { description:University of Delhi (http://www.du.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2017 is available., termsOfService:https://apisetu.gov.in/terms.php, title:University Of Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/duexam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:duexam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:44.852Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:44.852Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12937], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:44.852Z, info:{ description:University of Delhi (http://www.du.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2017 is available., termsOfService:https://apisetu.gov.in/terms.php, title:University Of Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/duexam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:duexam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:44.852Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:duexam: DataRow\">apisetu.gov.in:duexam</span>", children: [12919, 12920, 12938], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:44.852Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:44.852Z, info:{ description:University of Delhi (http://www.du.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently data for 2017 is available., termsOfService:https://apisetu.gov.in/terms.php, title:University Of Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/duexam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:duexam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:44.852Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/duexam/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:44.852Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:50.884Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:50.884Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Andaman (https://edistrict.andaman.gov.in/) is the online service delivery portal for Andaman & Nicobar Islands. Certain documents issued by it (e.g. Local Certificate,Income Certificate,OBC Certificate,Resident Certificate etc) can be pulled into citizens' DigiLocker accounts.\">eDistrict Andaman (https://edistrict.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Andaman & Nicobar Islands, Andaman & Nicobar\">eDistrict Andaman & Nicobar Islands, <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410558, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictandaman"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12951], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12943, 12944, 12945, 12946, 12947, 12948, 12949, 12950, 12952], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Andaman (https://edistrict.andaman.gov.in/) is the online service delivery portal for Andaman & Nicobar Islands. Certain documents issued by it (e.g. Local Certificate,Income Certificate,OBC Certificate,Resident Certificate etc) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Andaman & Nicobar Islands, Andaman & Nicobar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictandaman\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Andam<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:06:50.884Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12942, 12953, 12954, 12955, 12956, 12957], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:50.884Z\ninfo: { description:eDistrict Andaman (https://edistrict.andaman.gov.in/) is the online service delivery portal for Andaman & Nicobar Islands. Certain documents issued by it (e.g. Local Certificate,Income Certificate,OBC Certificate,Resident Certificate etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Andaman & Nicobar Islands, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:06:50.884Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:50.884Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12958], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:06:50.884Z, info:{ description:eDistrict Andaman (https://edistrict.andaman.gov.in/) is the online service delivery portal for Andaman & Nicobar Islands. Certain documents issued by it (e.g. Local Certificate,Income Certificate,OBC Certificate,Resident Certificate etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Andaman & Nicobar Islands, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:50.884Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictandaman: DataRow\">apisetu.gov.in:edistrictandaman</span>", children: [12940, 12941, 12959], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:06:50.884Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:06:50.884Z, info:{ description:eDistrict Andaman (https://edistrict.andaman.gov.in/) is the online service delivery portal for Andaman & Nicobar Islands. Certain documents issued by it (e.g. Local Certificate,Income Certificate,OBC Certificate,Resident Certificate etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Andaman & Nicobar Islands, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:06:50.884Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictandaman/3.0.0/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:06:50.884Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:11.296Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:11.296Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Himachal (http://edistrict.hp.gov.in/) is the online service delivery portal for Himachal Pradesh State Govt. Certain documents issued by it (e.g. Birth, Income, Caste, Agriculturist, Bonafide Himachali Certificates etc) can be pulled into citizens' DigiLocker accounts.\">eDistrict Himachal (http://edistrict.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Himachal Pradesh, Himachal Pradesh\">eDistrict Himachal Pradesh, Himachal <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410559, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistricthp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12972], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12973], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Himachal (http://edistrict.hp.gov.in/) is the online service delivery portal for Himachal Pradesh State Govt. Certain documents issued by it (e.g. Birth, Income, Caste, Agriculturist, Bonafide Himachali Certificates etc) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Himachal Pradesh, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistricthp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Himac<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:11.296Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12963, 12974, 12975, 12976, 12977, 12978], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:11.296Z\ninfo: { description:eDistrict Himachal (http://edistrict.hp.gov.in/) is the online service delivery portal for Himachal Pradesh State Govt. Certain documents issued by it (e.g. Birth, Income, Caste, Agriculturist, Bonafide Himachali Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistricthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistricthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:07:11.296Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:11.296Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [12979], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:07:11.296Z, info:{ description:eDistrict Himachal (http://edistrict.hp.gov.in/) is the online service delivery portal for Himachal Pradesh State Govt. Certain documents issued by it (e.g. Birth, Income, Caste, Agriculturist, Bonafide Himachali Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistricthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistricthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:11.296Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistricthp: DataRow\">apisetu.gov.in:edistricthp</span>", children: [12961, 12962, 12980], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:11.296Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:07:11.296Z, info:{ description:eDistrict Himachal (http://edistrict.hp.gov.in/) is the online service delivery portal for Himachal Pradesh State Govt. Certain documents issued by it (e.g. Birth, Income, Caste, Agriculturist, Bonafide Himachali Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistricthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistricthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:11.296Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistricthp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:11.296Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:27.279Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:27.279Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Kerala (https://edistrict.kerala.gov.in/) is the online service delivery portal for Kerala State Govt. Certain documents issued by it (e.g. Residence, Income, Caste Certificates etc) are made available in citizens' DigiLocker accounts.\">eDistrict Kerala (https://edistrict.k<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eDistrict Kerala, Kerala"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410560, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictkerala"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [12993], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [12985, 12986, 12987, 12988, 12989, 12990, 12991, 12992, 12994], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Kerala (https://edistrict.kerala.gov.in/) is the online service delivery portal for Kerala State Govt. Certain documents issued by it (e.g. Residence, Income, Caste Certificates etc) are made available in citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Kerala, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictkerala\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Keral<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:27.279Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [12984, 12995, 12996, 12997, 12998, 12999], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:27.279Z\ninfo: { description:eDistrict Kerala (https://edistrict.kerala.gov.in/) is the online service delivery portal for Kerala State Govt. Certain documents issued by it (e.g. Residence, Income, Caste Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Kerala, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictkerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictkerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:07:27.279Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:27.279Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13000], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:07:27.279Z, info:{ description:eDistrict Kerala (https://edistrict.kerala.gov.in/) is the online service delivery portal for Kerala State Govt. Certain documents issued by it (e.g. Residence, Income, Caste Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Kerala, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictkerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictkerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:27.279Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictkerala: DataRow\">apisetu.gov.in:edistrictkerala</span>", children: [12982, 12983, 13001], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:27.279Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:07:27.279Z, info:{ description:eDistrict Kerala (https://edistrict.kerala.gov.in/) is the online service delivery portal for Kerala State Govt. Certain documents issued by it (e.g. Residence, Income, Caste Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Kerala, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictkerala.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictkerala, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:27.279Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictkerala/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:27.279Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:43.168Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:43.168Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Odisha (http://edistrictodisha.gov.in/) is the online service delivery portal for Odisha State Govt. Certain documents issued by it (e.g. Income, Caste, Residence Certificates etc) are made available in citizens' DigiLocker accounts.\">eDistrict Odisha (http://edistrictodi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eDistrict Odisha, Odisha"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410561, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictodisha"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13014], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13006, 13007, 13008, 13009, 13010, 13011, 13012, 13013, 13015], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Odisha (http://edistrictodisha.gov.in/) is the online service delivery portal for Odisha State Govt. Certain documents issued by it (e.g. Income, Caste, Residence Certificates etc) are made available in citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Odisha, Odisha\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictodisha\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Odish<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:43.168Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13005, 13016, 13017, 13018, 13019, 13020], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:43.168Z\ninfo: { description:eDistrict Odisha (http://edistrictodisha.gov.in/) is the online service delivery portal for Odisha State Govt. Certain documents issued by it (e.g. Income, Caste, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:07:43.168Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:43.168Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13021], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:07:43.168Z, info:{ description:eDistrict Odisha (http://edistrictodisha.gov.in/) is the online service delivery portal for Odisha State Govt. Certain documents issued by it (e.g. Income, Caste, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:43.168Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictodisha: DataRow\">apisetu.gov.in:edistrictodisha</span>", children: [13003, 13004, 13022], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:43.168Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:07:43.168Z, info:{ description:eDistrict Odisha (http://edistrictodisha.gov.in/) is the online service delivery portal for Odisha State Govt. Certain documents issued by it (e.g. Income, Caste, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:43.168Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodisha/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:43.168Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:50.623Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:50.623Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by eDistrict Odisha ServicePlus, Odisha.\">APIs provided by eDistrict Odisha Ser<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eDistrict Odisha ServicePlus, Odisha"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410562, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictodishasp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13035], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13027, 13028, 13029, 13030, 13031, 13032, 13033, 13034, 13036], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by eDistrict Odisha ServicePlus, Odisha.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Odisha ServicePlus, Odisha\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictodishasp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:50.623Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13026, 13037, 13038, 13039, 13040, 13041], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:50.623Z\ninfo: { description:APIs provided by eDistrict Odisha ServicePlus, Odisha., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha ServicePlus, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodishasp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodishasp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:07:50.623Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:50.623Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13042], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:07:50.623Z, info:{ description:APIs provided by eDistrict Odisha ServicePlus, Odisha., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha ServicePlus, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodishasp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodishasp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:50.623Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictodishasp: DataRow\">apisetu.gov.in:edistrictodishasp</span>", children: [13024, 13025, 13043], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:50.623Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:07:50.623Z, info:{ description:APIs provided by eDistrict Odisha ServicePlus, Odisha., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Odisha ServicePlus, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictodishasp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictodishasp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:50.623Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictodishasp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:50.623Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:57.017Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:57.017Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict Punjab (http://edistrict.punjabgovt.gov.in) is the online service delivery portal for Punjab State Govt. Certain documents issued by it (e.g. Residence, SC/ST, OBC Certificates etc) can be pulled into citizens' DigiLocker accounts.\">eDistrict Punjab (http://edistrict.pu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Punjab State eGovernance Society, Punjab"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410563, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictpb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13056], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13048, 13049, 13050, 13051, 13052, 13053, 13054, 13055, 13057], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict Punjab (http://edistrict.punjabgovt.gov.in) is the online service delivery portal for Punjab State Govt. Certain documents issued by it (e.g. Residence, SC/ST, OBC Certificates etc) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Punjab State eGovernance Society, Punjab\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictpb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict Punja<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:07:57.017Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13047, 13058, 13059, 13060, 13061, 13062], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:57.017Z\ninfo: { description:eDistrict Punjab (http://edistrict.punjabgovt.gov.in) is the online service delivery portal for Punjab State Govt. Certain documents issued by it (e.g. Residence, SC/ST, OBC Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab State eGovernance Society, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:07:57.017Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:57.017Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13063], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:07:57.017Z, info:{ description:eDistrict Punjab (http://edistrict.punjabgovt.gov.in) is the online service delivery portal for Punjab State Govt. Certain documents issued by it (e.g. Residence, SC/ST, OBC Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab State eGovernance Society, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:57.017Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictpb: DataRow\">apisetu.gov.in:edistrictpb</span>", children: [13045, 13046, 13064], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:07:57.017Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:07:57.017Z, info:{ description:eDistrict Punjab (http://edistrict.punjabgovt.gov.in) is the online service delivery portal for Punjab State Govt. Certain documents issued by it (e.g. Residence, SC/ST, OBC Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab State eGovernance Society, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:07:57.017Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictpb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:07:57.017Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:12.920Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:12.920Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eDistrict UP (http://edistrict.up.nic.in/) is the online service delivery portal for UP State Govt. Certain documents issued by it (e.g. Birth, Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts.\">eDistrict UP (http://edistrict.up.nic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eDistrict Uttar Pradesh, Uttar Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410564, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["edistrictup"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13077], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13069, 13070, 13071, 13072, 13073, 13074, 13075, 13076, 13078], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eDistrict UP (http://edistrict.up.nic.in/) is the online service delivery portal for UP State Govt. Certain documents issued by it (e.g. Birth, Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eDistrict Uttar Pradesh, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: edistrictup\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eDistrict UP (h<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:12.920Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13068, 13079, 13080, 13081, 13082, 13083], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:12.920Z\ninfo: { description:eDistrict UP (http://edistrict.up.nic.in/) is the online service delivery portal for UP State Govt. Certain documents issued by it (e.g. Birth, Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:12.920Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:12.920Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13084], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:12.920Z, info:{ description:eDistrict UP (http://edistrict.up.nic.in/) is the online service delivery portal for UP State Govt. Certain documents issued by it (e.g. Birth, Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:12.920Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:edistrictup: DataRow\">apisetu.gov.in:edistrictup</span>", children: [13066, 13067, 13085], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:12.920Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:12.920Z, info:{ description:eDistrict UP (http://edistrict.up.nic.in/) is the online service delivery portal for UP State Govt. Certain documents issued by it (e.g. Birth, Income, Caste Certificates etc) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eDistrict Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/edistrictup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:edistrictup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:12.920Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/edistrictup/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:12.920Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:19.939Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:19.939Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ration Cards Issued by Department of Food, Civil Supplies and Consumer Affairs, Himachal Pradesh (http://food.hp.nic.in/) are available for download on DigiLocker.\">Ration Cards Issued by Department of <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Food and Civil Supplies Himachal Pradesh, Himachal Pradesh\">Department of Food and Civil Supplies<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410565, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ehimapurtihp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13098], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13090, 13091, 13092, 13093, 13094, 13095, 13096, 13097, 13099], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Ration Cards Issued by Department of Food, Civil Supplies and Consumer Affairs, Himachal Pradesh (http://food.hp.nic.in/) are available for download on DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Food and Civil Supplies Himachal Pradesh, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ehimapurtihp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Ration Cards Is<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:19.939Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13089, 13100, 13101, 13102, 13103, 13104], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:19.939Z\ninfo: { description:Ration Cards Issued by Department of Food, Civil Supplies and Consumer Affairs, Himachal Pradesh (http://food.hp.nic.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food and Civil Supplies Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ehimapurtihp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ehimapurtihp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:19.939Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:19.939Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13105], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:19.939Z, info:{ description:Ration Cards Issued by Department of Food, Civil Supplies and Consumer Affairs, Himachal Pradesh (http://food.hp.nic.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food and Civil Supplies Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ehimapurtihp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ehimapurtihp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:19.939Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ehimapurtihp: DataRow\">apisetu.gov.in:ehimapurtihp</span>", children: [13087, 13088, 13106], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:19.939Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:19.939Z, info:{ description:Ration Cards Issued by Department of Food, Civil Supplies and Consumer Affairs, Himachal Pradesh (http://food.hp.nic.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Food and Civil Supplies Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ehimapurtihp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ehimapurtihp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:19.939Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ehimapurtihp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:19.939Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:33.161Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:33.161Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Revenue, Registration & Land Reforms, Jharkhand (http://www.jharkhand.gov.in/revenue) is issuing Registration Certificate of Deeds into citizens' DigiLocker accounts from 5th May 2017 onwards.\">Department of Revenue, Registration &<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Revenue, Registration & Land Reforms Department, Jharkhand\">Revenue, Registration & Land Reforms <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410566, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["enibandhanjh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13119], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13111, 13112, 13113, 13114, 13115, 13116, 13117, 13118, 13120], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Department of Revenue, Registration & Land Reforms, Jharkhand (http://www.jharkhand.gov.in/revenue) is issuing Registration Certificate of Deeds into citizens' DigiLocker accounts from 5th May 2017 onwards.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Revenue, Registration & Land Reforms Department, Jharkhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: enibandhanjh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Department of R<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:33.161Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13110, 13121, 13122, 13123, 13124, 13125], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:33.161Z\ninfo: { description:Department of Revenue, Registration & Land Reforms, Jharkhand (http://www.jharkhand.gov.in/revenue) is issuing Registration Certificate of Deeds into citizens' DigiLocker accounts from 5th May 2017 onwards., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue, Registration & Land Reforms Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/enibandhanjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:enibandhanjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:33.161Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:33.161Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13126], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:33.161Z, info:{ description:Department of Revenue, Registration & Land Reforms, Jharkhand (http://www.jharkhand.gov.in/revenue) is issuing Registration Certificate of Deeds into citizens' DigiLocker accounts from 5th May 2017 onwards., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue, Registration & Land Reforms Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/enibandhanjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:enibandhanjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:33.161Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:enibandhanjh: DataRow\">apisetu.gov.in:enibandhanjh</span>", children: [13108, 13109, 13127], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:33.161Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:33.161Z, info:{ description:Department of Revenue, Registration & Land Reforms, Jharkhand (http://www.jharkhand.gov.in/revenue) is issuing Registration Certificate of Deeds into citizens' DigiLocker accounts from 5th May 2017 onwards., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue, Registration & Land Reforms Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/enibandhanjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:enibandhanjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:33.161Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/enibandhanjh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:33.161Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:46.036Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:46.036Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Pension Payment Order and UAN, as provided by EPFO (https://www.epfindia.gov.in), can be downloaded in citizen's DigiLocker account.\">Pension Payment Order and UAN, as pro<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Employees' Provident Fund Organization"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410567, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["epfindia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13140], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13132, 13133, 13134, 13135, 13136, 13137, 13138, 13139, 13141], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Pension Payment Order and UAN, as provided by EPFO (https://www.epfindia.gov.in), can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Employees' Provident Fund Organization\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: epfindia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Pension Payment<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:46.036Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13131, 13142, 13143, 13144, 13145, 13146], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:46.036Z\ninfo: { description:Pension Payment Order and UAN, as provided by EPFO (https://www.epfindia.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Employees' Provident Fund Organization, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epfindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epfindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:46.036Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:46.036Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13147], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:46.036Z, info:{ description:Pension Payment Order and UAN, as provided by EPFO (https://www.epfindia.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Employees' Provident Fund Organization, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epfindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epfindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:46.036Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:epfindia: DataRow\">apisetu.gov.in:epfindia</span>", children: [13129, 13130, 13148], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:46.036Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:46.036Z, info:{ description:Pension Payment Order and UAN, as provided by EPFO (https://www.epfindia.gov.in), can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Employees' Provident Fund Organization, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epfindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epfindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:46.036Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epfindia/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:46.036Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:52.419Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:52.419Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Lok Praman Patra (http://admis.hp.nic.in/epraman/) is the online service delivery portal by Himachal Pradesh Govt. Certain documents issued by it (e.g. Bonafide, Dogra Class, Income, Character Certificates etc.) can be pulled into citizens' DigiLocker accounts.\">Lok Praman Patra (http://admis.hp.nic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Department of Revenue, Himachal Pradesh\">Himachal Pradesh Department of Revenu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410568, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["epramanhp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13161], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13153, 13154, 13155, 13156, 13157, 13158, 13159, 13160, 13162], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Lok Praman Patra (http://admis.hp.nic.in/epraman/) is the online service delivery portal by Himachal Pradesh Govt. Certain documents issued by it (e.g. Bonafide, Dogra Class, Income, Character Certificates etc.) can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Himachal Pradesh Department of Revenue, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: epramanhp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Lok Praman Patr<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:52.419Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13152, 13163, 13164, 13165, 13166, 13167], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:52.419Z\ninfo: { description:Lok Praman Patra (http://admis.hp.nic.in/epraman/) is the online service delivery portal by Himachal Pradesh Govt. Certain documents issued by it (e.g. Bonafide, Dogra Class, Income, Character Certificates etc.) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Department of Revenue, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epramanhp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epramanhp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:52.419Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:52.419Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13168], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:52.419Z, info:{ description:Lok Praman Patra (http://admis.hp.nic.in/epraman/) is the online service delivery portal by Himachal Pradesh Govt. Certain documents issued by it (e.g. Bonafide, Dogra Class, Income, Character Certificates etc.) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Department of Revenue, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epramanhp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epramanhp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:52.419Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:epramanhp: DataRow\">apisetu.gov.in:epramanhp</span>", children: [13150, 13151, 13169], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:52.419Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:52.419Z, info:{ description:Lok Praman Patra (http://admis.hp.nic.in/epraman/) is the online service delivery portal by Himachal Pradesh Govt. Certain documents issued by it (e.g. Bonafide, Dogra Class, Income, Character Certificates etc.) can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Department of Revenue, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/epramanhp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:epramanhp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:52.419Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/epramanhp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:52.419Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:59.675Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:59.675Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eService (eDistrict), Arunachal Pradesh (http://eservice.arunachal.gov.in/) is the online service delivery portal for Arunachal Pradesh State Govt. Certain documents issued by it (e.g. Income, Caste, Domicile, Dependency, SC/ST ,Character, Residence Certificates etc) are made available in citizens' DigiLocker accounts.\">eService (eDistrict), Arunachal Prade<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eService (eDistrict), Arunachal Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410569, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["eservicearunachal"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13182], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13174, 13175, 13176, 13177, 13178, 13179, 13180, 13181, 13183], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eService (eDistrict), Arunachal Pradesh (http://eservice.arunachal.gov.in/) is the online service delivery portal for Arunachal Pradesh State Govt. Certain documents issued by it (e.g. Income, Caste, Domicile, Dependency, SC/ST ,Character, Residence Certificates etc) are made available in citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: eService (eDistrict), Arunachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: eservicearunachal\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eService (eDist<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:08:59.675Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13173, 13184, 13185, 13186, 13187, 13188], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:59.675Z\ninfo: { description:eService (eDistrict), Arunachal Pradesh (http://eservice.arunachal.gov.in/) is the online service delivery portal for Arunachal Pradesh State Govt. Certain documents issued by it (e.g. Income, Caste, Domicile, Dependency, SC/ST ,Character, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eService (eDistrict), Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/eservicearunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:eservicearunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:08:59.675Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:59.675Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13189], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:08:59.675Z, info:{ description:eService (eDistrict), Arunachal Pradesh (http://eservice.arunachal.gov.in/) is the online service delivery portal for Arunachal Pradesh State Govt. Certain documents issued by it (e.g. Income, Caste, Domicile, Dependency, SC/ST ,Character, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eService (eDistrict), Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/eservicearunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:eservicearunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:59.675Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:eservicearunachal: DataRow\">apisetu.gov.in:eservicearunachal</span>", children: [13171, 13172, 13190], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:08:59.675Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:08:59.675Z, info:{ description:eService (eDistrict), Arunachal Pradesh (http://eservice.arunachal.gov.in/) is the online service delivery portal for Arunachal Pradesh State Govt. Certain documents issued by it (e.g. Income, Caste, Domicile, Dependency, SC/ST ,Character, Residence Certificates etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:eService (eDistrict), Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/eservicearunachal.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:eservicearunachal, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:08:59.675Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/eservicearunachal/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/es... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:08:59.675Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:05.883Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:05.883Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ration Cards issued by Food & Supplies Department, Haryana (http://haryanafood.gov.in/) are available for download on DigiLocker.\">Ration Cards issued by Food & Supplie<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Food and Supplies Department, Haryana"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410570, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["fsdhr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13203], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13195, 13196, 13197, 13198, 13199, 13200, 13201, 13202, 13204], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Ration Cards issued by Food & Supplies Department, Haryana (http://haryanafood.gov.in/) are available for download on DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Food and Supplies Department, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: fsdhr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Ration Cards is<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:05.883Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13194, 13205, 13206, 13207, 13208, 13209], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:05.883Z\ninfo: { description:Ration Cards issued by Food & Supplies Department, Haryana (http://haryanafood.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food and Supplies Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/fsdhr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:fsdhr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:05.883Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:05.883Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13210], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:05.883Z, info:{ description:Ration Cards issued by Food & Supplies Department, Haryana (http://haryanafood.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food and Supplies Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/fsdhr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:fsdhr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:05.883Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:fsdhr: DataRow\">apisetu.gov.in:fsdhr</span>", children: [13192, 13193, 13211], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:05.883Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:05.883Z, info:{ description:Ration Cards issued by Food & Supplies Department, Haryana (http://haryanafood.gov.in/) are available for download on DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Food and Supplies Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/fsdhr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:fsdhr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:05.883Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/fsdhr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:05.883Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:11.819Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:11.819Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Two Wheeler, Car, Commercial Vehicle, Home and Travel Insurance policies issued by Future Generali are available on DigiLocker and can be pulled by citizens in their account.\">Two Wheeler, Car, Commercial Vehicle,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Future Generali Total Insurance Solutions\">Future Generali Total Insurance Solut<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410571, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["futuregenerali"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13224], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13216, 13217, 13218, 13219, 13220, 13221, 13222, 13223, 13225], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Two Wheeler, Car, Commercial Vehicle, Home and Travel Insurance policies issued by Future Generali are available on DigiLocker and can be pulled by citizens in their account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Future Generali Total Insurance Solutions\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: futuregenerali\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Two Wheeler, Ca<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:11.819Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13215, 13226, 13227, 13228, 13229, 13230], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:11.819Z\ninfo: { description:Two Wheeler, Car, Commercial Vehicle, Home and Travel Insurance policies issued by Future Generali are available on DigiLocker and can be pulled by citizens in their account., termsOfService:https://apisetu.gov.in/terms.php, title:Future Generali Total Insurance Solutions, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/futuregenerali.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:futuregenerali, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:11.819Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:11.819Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13231], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:11.819Z, info:{ description:Two Wheeler, Car, Commercial Vehicle, Home and Travel Insurance policies issued by Future Generali are available on DigiLocker and can be pulled by citizens in their account., termsOfService:https://apisetu.gov.in/terms.php, title:Future Generali Total Insurance Solutions, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/futuregenerali.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:futuregenerali, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:11.819Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:futuregenerali: DataRow\">apisetu.gov.in:futuregenerali</span>", children: [13213, 13214, 13232], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:11.819Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:11.819Z, info:{ description:Two Wheeler, Car, Commercial Vehicle, Home and Travel Insurance policies issued by Future Generali are available on DigiLocker and can be pulled by citizens in their account., termsOfService:https://apisetu.gov.in/terms.php, title:Future Generali Total Insurance Solutions, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/futuregenerali.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:futuregenerali, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:11.819Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/futuregenerali/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:11.819Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:18.193Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:18.193Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"General Administration Department, Bihar (http://gad.bih.nic.in/) is LIVE with DigiLocker. You can fetch your EWS certificate into your DigiLocker user account.\">General Administration Department, Bi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["General Administration Department, Bihar"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410572, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gadbih"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13245], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13237, 13238, 13239, 13240, 13241, 13242, 13243, 13244, 13246], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: General Administration Department, Bihar (http://gad.bih.nic.in/) is LIVE with DigiLocker. You can fetch your EWS certificate into your DigiLocker user account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: General Administration Department, Bihar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: gadbih\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>General Adminis<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:18.193Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13236, 13247, 13248, 13249, 13250, 13251], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:18.193Z\ninfo: { description:General Administration Department, Bihar (http://gad.bih.nic.in/) is LIVE with DigiLocker. You can fetch your EWS certificate into your DigiLocker user account., termsOfService:https://apisetu.gov.in/terms.php, title:General Administration Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gadbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gadbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:18.193Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:18.193Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13252], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:18.193Z, info:{ description:General Administration Department, Bihar (http://gad.bih.nic.in/) is LIVE with DigiLocker. You can fetch your EWS certificate into your DigiLocker user account., termsOfService:https://apisetu.gov.in/terms.php, title:General Administration Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gadbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gadbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:18.193Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:gadbih: DataRow\">apisetu.gov.in:gadbih</span>", children: [13234, 13235, 13253], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:18.193Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:18.193Z, info:{ description:General Administration Department, Bihar (http://gad.bih.nic.in/) is LIVE with DigiLocker. You can fetch your EWS certificate into your DigiLocker user account., termsOfService:https://apisetu.gov.in/terms.php, title:General Administration Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gadbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gadbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:18.193Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gadbih/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:18.193Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:24.124Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:24.124Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"GAUHATI UNIVERSITY (https://www.gauhati.ac.in/) has made available Registration Certificate in DigiLocker, which can be pulled by students into their accounts.\">GAUHATI UNIVERSITY (https://www.gauha<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Gauhati University"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410573, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gauhati"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13266], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13258, 13259, 13260, 13261, 13262, 13263, 13264, 13265, 13267], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: GAUHATI UNIVERSITY (https://www.gauhati.ac.in/) has made available Registration Certificate in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Gauhati University\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: gauhati\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>GAUHATI UNIVERS<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:24.124Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13257, 13268, 13269, 13270, 13271, 13272], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:24.124Z\ninfo: { description:GAUHATI UNIVERSITY (https://www.gauhati.ac.in/) has made available Registration Certificate in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Gauhati University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gauhati.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gauhati, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:24.124Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:24.124Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13273], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:24.124Z, info:{ description:GAUHATI UNIVERSITY (https://www.gauhati.ac.in/) has made available Registration Certificate in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Gauhati University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gauhati.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gauhati, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:24.124Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:gauhati: DataRow\">apisetu.gov.in:gauhati</span>", children: [13255, 13256, 13274], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:24.124Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:24.124Z, info:{ description:GAUHATI UNIVERSITY (https://www.gauhati.ac.in/) has made available Registration Certificate in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Gauhati University, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gauhati.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gauhati, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:24.124Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gauhati/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:24.124Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:29.976Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:29.976Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Goa State Board of Secondary and Higher Secondary Education, Goa.\">APIs provided by Goa State Board of S<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Goa State Board of Secondary and Higher Secondary Education, Goa\">Goa State Board of Secondary and High<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410574, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gbshse"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13287], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13279, 13280, 13281, 13282, 13283, 13284, 13285, 13286, 13288], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Goa State Board of Secondary and Higher Secondary Education, Goa.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Goa State Board of Secondary and Higher Secondary Education, Goa\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: gbshse\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:29.976Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13278, 13289, 13290, 13291, 13292, 13293], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:29.976Z\ninfo: { description:APIs provided by Goa State Board of Secondary and Higher Secondary Education, Goa., termsOfService:https://apisetu.gov.in/terms.php, title:Goa State Board of Secondary and Higher Secondary Education, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gbshse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gbshse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:29.976Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:29.976Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13294], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:29.976Z, info:{ description:APIs provided by Goa State Board of Secondary and Higher Secondary Education, Goa., termsOfService:https://apisetu.gov.in/terms.php, title:Goa State Board of Secondary and Higher Secondary Education, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gbshse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gbshse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:29.976Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:gbshse: DataRow\">apisetu.gov.in:gbshse</span>", children: [13276, 13277, 13295], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:29.976Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:29.976Z, info:{ description:APIs provided by Goa State Board of Secondary and Higher Secondary Education, Goa., termsOfService:https://apisetu.gov.in/terms.php, title:Goa State Board of Secondary and Higher Secondary Education, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gbshse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gbshse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:29.976Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gbshse/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:29.976Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:35.707Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:35.707Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Geetanjali University, Udaipur (http://www.geetanjaliuniversity.com/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2016 is made available by Geetanjali University.\">Geetanjali University, Udaipur (http:<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Geetanjali University, Udaipur"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410575, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["geetanjaliuniv"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13308], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13300, 13301, 13302, 13303, 13304, 13305, 13306, 13307, 13309], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Geetanjali University, Udaipur (http://www.geetanjaliuniversity.com/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2016 is made available by Geetanjali University.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Geetanjali University, Udaipur\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: geetanjaliuniv\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Geetanjali Univ<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:35.707Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13299, 13310, 13311, 13312, 13313, 13314], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:35.707Z\ninfo: { description:Geetanjali University, Udaipur (http://www.geetanjaliuniversity.com/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2016 is made available by Geetanjali University., termsOfService:https://apisetu.gov.in/terms.php, title:Geetanjali University, Udaipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/geetanjaliuniv.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:geetanjaliuniv, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:35.707Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:35.707Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13315], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:35.707Z, info:{ description:Geetanjali University, Udaipur (http://www.geetanjaliuniversity.com/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2016 is made available by Geetanjali University., termsOfService:https://apisetu.gov.in/terms.php, title:Geetanjali University, Udaipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/geetanjaliuniv.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:geetanjaliuniv, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:35.707Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:geetanjaliuniv: DataRow\">apisetu.gov.in:geetanjaliuniv</span>", children: [13297, 13298, 13316], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:35.707Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:35.707Z, info:{ description:Geetanjali University, Udaipur (http://www.geetanjaliuniversity.com/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2016 is made available by Geetanjali University., termsOfService:https://apisetu.gov.in/terms.php, title:Geetanjali University, Udaipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/geetanjaliuniv.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:geetanjaliuniv, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:35.707Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/geetanjaliuniv/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:35.707Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:41.545Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:41.545Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Government Medical College and Hospital (GMCH), Chandigarh provides patient's clinical laboratory reports to DigiLocker.\">Government Medical College and Hospit<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["GMCH, Chandigarh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410576, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gmch"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13329], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13321, 13322, 13323, 13324, 13325, 13326, 13327, 13328, 13330], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Government Medical College and Hospital (GMCH), Chandigarh provides patient's clinical laboratory reports to DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: GMCH, Chandigarh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: gmch\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Government Medi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:41.545Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13320, 13331, 13332, 13333, 13334, 13335], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:41.545Z\ninfo: { description:Government Medical College and Hospital (GMCH), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:GMCH, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gmch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gmch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:41.545Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:41.545Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13336], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:41.545Z, info:{ description:Government Medical College and Hospital (GMCH), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:GMCH, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gmch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gmch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:41.545Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:gmch: DataRow\">apisetu.gov.in:gmch</span>", children: [13318, 13319, 13337], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:41.545Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:41.545Z, info:{ description:Government Medical College and Hospital (GMCH), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:GMCH, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gmch.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gmch, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:41.545Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gmch/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:41.545Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:48.337Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:48.337Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Goa WRD (https://goawrd.gov.in/) is the official departmental portal of the Water Resources Department, Govt. of Goa, through which citizens can avail time bound service being offered by the department. Certificates issued by it (e.g. Contractor Enlistment, Well Registration etc) are made available in citizens' DigiLocker accounts.\">Goa WRD (https://goawrd.gov.in/) is t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Goa Water Resources Department, Goa"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410577, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["goawrd"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13350], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13342, 13343, 13344, 13345, 13346, 13347, 13348, 13349, 13351], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Goa WRD (https://goawrd.gov.in/) is the official departmental portal of the Water Resources Department, Govt. of Goa, through which citizens can avail time bound service being offered by the department. Certificates issued by it (e.g. Contractor Enlistment, Well Registration etc) are made available in citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Goa Water Resources Department, Goa\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: goawrd\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Goa WRD (https:<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:48.337Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13341, 13352, 13353, 13354, 13355, 13356], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:48.337Z\ninfo: { description:Goa WRD (https://goawrd.gov.in/) is the official departmental portal of the Water Resources Department, Govt. of Goa, through which citizens can avail time bound service being offered by the department. Certificates issued by it (e.g. Contractor Enlistment, Well Registration etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Goa Water Resources Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/goawrd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:goawrd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:48.337Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:48.337Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13357], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:48.337Z, info:{ description:Goa WRD (https://goawrd.gov.in/) is the official departmental portal of the Water Resources Department, Govt. of Goa, through which citizens can avail time bound service being offered by the department. Certificates issued by it (e.g. Contractor Enlistment, Well Registration etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Goa Water Resources Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/goawrd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:goawrd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:48.337Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:goawrd: DataRow\">apisetu.gov.in:goawrd</span>", children: [13339, 13340, 13358], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:48.337Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:48.337Z, info:{ description:Goa WRD (https://goawrd.gov.in/) is the official departmental portal of the Water Resources Department, Govt. of Goa, through which citizens can avail time bound service being offered by the department. Certificates issued by it (e.g. Contractor Enlistment, Well Registration etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Goa Water Resources Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/goawrd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:goawrd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:48.337Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/goawrd/3.0.0/openapi.yaml, o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:48.337Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:54.271Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:54.271Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Car, Two wheeler and Commercial Vehicle insurance policies issued by GoDigit (https://www.godigit.com), a General Insurance company, can be fetched by Citizens in their DigiLocker accounts.\">Car, Two wheeler and Commercial Vehic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Go Digit General Insurance Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410578, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["godigit"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13371], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13363, 13364, 13365, 13366, 13367, 13368, 13369, 13370, 13372], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Car, Two wheeler and Commercial Vehicle insurance policies issued by GoDigit (https://www.godigit.com), a General Insurance company, can be fetched by Citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Go Digit General Insurance Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: godigit\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Car, Two wheele<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:09:54.271Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13362, 13373, 13374, 13375, 13376, 13377], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:54.271Z\ninfo: { description:Car, Two wheeler and Commercial Vehicle insurance policies issued by GoDigit (https://www.godigit.com), a General Insurance company, can be fetched by Citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Go Digit General Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/godigit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:godigit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:09:54.271Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:54.271Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13378], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:09:54.271Z, info:{ description:Car, Two wheeler and Commercial Vehicle insurance policies issued by GoDigit (https://www.godigit.com), a General Insurance company, can be fetched by Citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Go Digit General Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/godigit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:godigit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:54.271Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:godigit: DataRow\">apisetu.gov.in:godigit</span>", children: [13360, 13361, 13379], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:09:54.271Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:09:54.271Z, info:{ description:Car, Two wheeler and Commercial Vehicle insurance policies issued by GoDigit (https://www.godigit.com), a General Insurance company, can be fetched by Citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Go Digit General Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/godigit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:godigit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:09:54.271Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/godigit/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:09:54.271Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:00.619Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:00.619Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Gujarat Vidyapith, Ahmedabad (http://www.gujaratvidyapith.org/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Gujarat Vidyapith.\">Gujarat Vidyapith, Ahmedabad (http://<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Gujarat Vidyapith, Ahmedabad"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410579, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["gujaratvidyapith"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13392], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13384, 13385, 13386, 13387, 13388, 13389, 13390, 13391, 13393], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Gujarat Vidyapith, Ahmedabad (http://www.gujaratvidyapith.org/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Gujarat Vidyapith.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Gujarat Vidyapith, Ahmedabad\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: gujaratvidyapith\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Gujarat Vidyapi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:00.619Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13383, 13394, 13395, 13396, 13397, 13398], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:00.619Z\ninfo: { description:Gujarat Vidyapith, Ahmedabad (http://www.gujaratvidyapith.org/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Gujarat Vidyapith., termsOfService:https://apisetu.gov.in/terms.php, title:Gujarat Vidyapith, Ahmedabad, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gujaratvidyapith.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gujaratvidyapith, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:00.619Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:00.619Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13399], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:00.619Z, info:{ description:Gujarat Vidyapith, Ahmedabad (http://www.gujaratvidyapith.org/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Gujarat Vidyapith., termsOfService:https://apisetu.gov.in/terms.php, title:Gujarat Vidyapith, Ahmedabad, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gujaratvidyapith.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gujaratvidyapith, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:00.619Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:gujaratvidyapith: DataRow\">apisetu.gov.in:gujaratvidyapith</span>", children: [13381, 13382, 13400], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:00.619Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:00.619Z, info:{ description:Gujarat Vidyapith, Ahmedabad (http://www.gujaratvidyapith.org/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Gujarat Vidyapith., termsOfService:https://apisetu.gov.in/terms.php, title:Gujarat Vidyapith, Ahmedabad, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/gujaratvidyapith.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:gujaratvidyapith, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:00.619Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/gujaratvidyapith/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:00.619Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:06.418Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:06.418Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eSubscription Voucher for LPG connections provided by HPCL (http://www.hindustanpetroleum.com/) are made available to citizens in their DigiLocker accounts.\">eSubscription Voucher for LPG connect<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ministry of Petroleum and Natural Gas (HPCL)\">Ministry of Petroleum and Natural Gas<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410580, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hindustanpetroleum"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13413], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13405, 13406, 13407, 13408, 13409, 13410, 13411, 13412, 13414], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eSubscription Voucher for LPG connections provided by HPCL (http://www.hindustanpetroleum.com/) are made available to citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Ministry of Petroleum and Natural Gas (HPCL)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hindustanpetroleum\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eSubscription V<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:06.418Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13404, 13415, 13416, 13417, 13418, 13419], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:06.418Z\ninfo: { description:eSubscription Voucher for LPG connections provided by HPCL (http://www.hindustanpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (HPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hindustanpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hindustanpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:06.418Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:06.418Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13420], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:06.418Z, info:{ description:eSubscription Voucher for LPG connections provided by HPCL (http://www.hindustanpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (HPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hindustanpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hindustanpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:06.418Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hindustanpetroleum: DataRow\">apisetu.gov.in:hindustanpetroleum</span>", children: [13402, 13403, 13421], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:06.418Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:06.418Z, info:{ description:eSubscription Voucher for LPG connections provided by HPCL (http://www.hindustanpetroleum.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (HPCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hindustanpetroleum.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hindustanpetroleum, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:06.418Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hindustanpetroleum/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:06.418Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:12.185Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:12.185Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh (http://hpayushboard.org/) is the online service portal by Govt. of Himachal Pradesh. Registration Certificate issued online, can be pulled into citizens DigiLocker accounts.\">Board of Ayurvedic and Unani Systems <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh, Himachal Pradesh\">Board of Ayurvedic and Unani Systems <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410581, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hpayushboard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13434], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13426, 13427, 13428, 13429, 13430, 13431, 13432, 13433, 13435], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh (http://hpayushboard.org/) is the online service portal by Govt. of Himachal Pradesh. Registration Certificate issued online, can be pulled into citizens DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hpayushboard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of Ayurve<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:12.185Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13425, 13436, 13437, 13438, 13439, 13440], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:12.185Z\ninfo: { description:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh (http://hpayushboard.org/) is the online service portal by Govt. of Himachal Pradesh. Registration Certificate issued online, can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpayushboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpayushboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:12.185Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:12.185Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13441], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:12.185Z, info:{ description:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh (http://hpayushboard.org/) is the online service portal by Govt. of Himachal Pradesh. Registration Certificate issued online, can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpayushboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpayushboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:12.185Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hpayushboard: DataRow\">apisetu.gov.in:hpayushboard</span>", children: [13423, 13424, 13442], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:12.185Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:12.185Z, info:{ description:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh (http://hpayushboard.org/) is the online service portal by Govt. of Himachal Pradesh. Registration Certificate issued online, can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Board of Ayurvedic and Unani Systems of Medicine, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpayushboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpayushboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:12.185Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpayushboard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:12.185Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:17.957Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:17.957Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Board of School Education, Dharamshala (http://hpbose.org/) has made available Class X (2012-18) & Class XII (2012-18) provisional certificates, which can be pulled by students into their accounts.\">Himachal Pradesh Board of School Educ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Board of School Education, Himachal Pradesh\">Himachal Pradesh Board of School Educ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410582, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hpbose"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13455], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13447, 13448, 13449, 13450, 13451, 13452, 13453, 13454, 13456], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Himachal Pradesh Board of School Education, Dharamshala (http://hpbose.org/) has made available Class X (2012-18) & Class XII (2012-18) provisional certificates, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Himachal Pradesh Board of School Education, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hpbose\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Himachal Prades<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:17.957Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13446, 13457, 13458, 13459, 13460, 13461], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:17.957Z\ninfo: { description:Himachal Pradesh Board of School Education, Dharamshala (http://hpbose.org/) has made available Class X (2012-18) & Class XII (2012-18) provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Board of School Education, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:17.957Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:17.957Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13462], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:17.957Z, info:{ description:Himachal Pradesh Board of School Education, Dharamshala (http://hpbose.org/) has made available Class X (2012-18) & Class XII (2012-18) provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Board of School Education, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:17.957Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hpbose: DataRow\">apisetu.gov.in:hpbose</span>", children: [13444, 13445, 13463], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:17.957Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:17.957Z, info:{ description:Himachal Pradesh Board of School Education, Dharamshala (http://hpbose.org/) has made available Class X (2012-18) & Class XII (2012-18) provisional certificates, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Board of School Education, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:17.957Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpbose/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:17.957Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:24.227Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:24.227Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Parivar Patra (http://aadhaar.hp.gov.in/epanchayat/) is the online service portal by Govt. of Himachal Pradesh. Parivar Register issued online certificate can be pulled into citizens' DigiLocker accounts.\">Parivar Patra (http://aadhaar.hp.gov.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Panchayati Raj Department, Himachal Pradesh, Himachal Pradesh\">Panchayati Raj Department, Himachal P<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410583, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hppanchayat"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13476], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13468, 13469, 13470, 13471, 13472, 13473, 13474, 13475, 13477], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Parivar Patra (http://aadhaar.hp.gov.in/epanchayat/) is the online service portal by Govt. of Himachal Pradesh. Parivar Register issued online certificate can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Panchayati Raj Department, Himachal Pradesh, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hppanchayat\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Parivar Patra (<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:24.227Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13467, 13478, 13479, 13480, 13481, 13482], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:24.227Z\ninfo: { description:Parivar Patra (http://aadhaar.hp.gov.in/epanchayat/) is the online service portal by Govt. of Himachal Pradesh. Parivar Register issued online certificate can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Panchayati Raj Department, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hppanchayat.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hppanchayat, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:24.227Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:24.227Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13483], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:24.227Z, info:{ description:Parivar Patra (http://aadhaar.hp.gov.in/epanchayat/) is the online service portal by Govt. of Himachal Pradesh. Parivar Register issued online certificate can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Panchayati Raj Department, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hppanchayat.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hppanchayat, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:24.227Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hppanchayat: DataRow\">apisetu.gov.in:hppanchayat</span>", children: [13465, 13466, 13484], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:24.227Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:24.227Z, info:{ description:Parivar Patra (http://aadhaar.hp.gov.in/epanchayat/) is the online service portal by Govt. of Himachal Pradesh. Parivar Register issued online certificate can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Panchayati Raj Department, Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hppanchayat.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hppanchayat, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:24.227Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hppanchayat/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:24.227Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:30.284Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:30.284Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Swasthya Bima Yojna Society (http://admis.hp.nic.in/epraman/https://www.hpsbys.in/) is the online service delivery portal by Himachal Pradesh Govt. Digital Health card is available in DigiLocker. Aslo can be pulled into citizens' DigiLocker accounts.\">Himachal Pradesh Swasthya Bima Yojna <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"HP Swasthya Bima Yojna Society, Himachal Pradesh\">HP Swasthya Bima Yojna Society, Himac<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410584, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hpsbys"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13497], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13489, 13490, 13491, 13492, 13493, 13494, 13495, 13496, 13498], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Himachal Pradesh Swasthya Bima Yojna Society (http://admis.hp.nic.in/epraman/https://www.hpsbys.in/) is the online service delivery portal by Himachal Pradesh Govt. Digital Health card is available in DigiLocker. Aslo can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: HP Swasthya Bima Yojna Society, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hpsbys\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Himachal Prades<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:30.284Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13488, 13499, 13500, 13501, 13502, 13503], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:30.284Z\ninfo: { description:Himachal Pradesh Swasthya Bima Yojna Society (http://admis.hp.nic.in/epraman/https://www.hpsbys.in/) is the online service delivery portal by Himachal Pradesh Govt. Digital Health card is available in DigiLocker. Aslo can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Swasthya Bima Yojna Society, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsbys.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsbys, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:30.284Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:30.284Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13504], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:30.284Z, info:{ description:Himachal Pradesh Swasthya Bima Yojna Society (http://admis.hp.nic.in/epraman/https://www.hpsbys.in/) is the online service delivery portal by Himachal Pradesh Govt. Digital Health card is available in DigiLocker. Aslo can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Swasthya Bima Yojna Society, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsbys.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsbys, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:30.284Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hpsbys: DataRow\">apisetu.gov.in:hpsbys</span>", children: [13486, 13487, 13505], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:30.284Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:30.284Z, info:{ description:Himachal Pradesh Swasthya Bima Yojna Society (http://admis.hp.nic.in/epraman/https://www.hpsbys.in/) is the online service delivery portal by Himachal Pradesh Govt. Digital Health card is available in DigiLocker. Aslo can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Swasthya Bima Yojna Society, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsbys.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsbys, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:30.284Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsbys/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:30.284Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:36.504Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:36.504Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Staff Selection Commision (http://hpsssb.hp.gov.in/) is the online service portal by Govt. of Himachal Pradesh. Admit Cards issued online certificate can be pulled into citizens DigiLocker accounts.\">Himachal Pradesh Staff Selection Comm<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"HP Staff Selection Commission - HPSSC - Himachal Pradesh, Himachal Pradesh\">HP Staff Selection Commission - HPSSC<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410585, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hpsssb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13518], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13510, 13511, 13512, 13513, 13514, 13515, 13516, 13517, 13519], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Himachal Pradesh Staff Selection Commision (http://hpsssb.hp.gov.in/) is the online service portal by Govt. of Himachal Pradesh. Admit Cards issued online certificate can be pulled into citizens DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: HP Staff Selection Commission - HPSSC - Himachal Pradesh, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hpsssb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Himachal Prades<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:36.504Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13509, 13520, 13521, 13522, 13523, 13524], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:36.504Z\ninfo: { description:Himachal Pradesh Staff Selection Commision (http://hpsssb.hp.gov.in/) is the online service portal by Govt. of Himachal Pradesh. Admit Cards issued online certificate can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Staff Selection Commission - HPSSC - Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsssb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsssb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:36.504Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:36.504Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13525], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:36.504Z, info:{ description:Himachal Pradesh Staff Selection Commision (http://hpsssb.hp.gov.in/) is the online service portal by Govt. of Himachal Pradesh. Admit Cards issued online certificate can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Staff Selection Commission - HPSSC - Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsssb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsssb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:36.504Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hpsssb: DataRow\">apisetu.gov.in:hpsssb</span>", children: [13507, 13508, 13526], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:36.504Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:36.504Z, info:{ description:Himachal Pradesh Staff Selection Commision (http://hpsssb.hp.gov.in/) is the online service portal by Govt. of Himachal Pradesh. Admit Cards issued online certificate can be pulled into citizens DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:HP Staff Selection Commission - HPSSC - Himachal Pradesh, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hpsssb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hpsssb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:36.504Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hpsssb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:36.504Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:42.100Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:42.100Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Takniki Shiksha Board, Dharamshala (http://www.hptechboard.com/) has made available Diploma Certificate in DigiLocker, which can be pulled by students into their DigiLocker account.\">Himachal Pradesh Takniki Shiksha Boar<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Himachal Pradesh Takniki Shiksha Board Dharamshala, Himachal Pradesh\">Himachal Pradesh Takniki Shiksha Boar<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410586, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hptechboard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13539], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13531, 13532, 13533, 13534, 13535, 13536, 13537, 13538, 13540], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Himachal Pradesh Takniki Shiksha Board, Dharamshala (http://www.hptechboard.com/) has made available Diploma Certificate in DigiLocker, which can be pulled by students into their DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Himachal Pradesh Takniki Shiksha Board Dharamshala, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hptechboard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Himachal Prades<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:42.100Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13530, 13541, 13542, 13543, 13544, 13545], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:42.100Z\ninfo: { description:Himachal Pradesh Takniki Shiksha Board, Dharamshala (http://www.hptechboard.com/) has made available Diploma Certificate in DigiLocker, which can be pulled by students into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Takniki Shiksha Board Dharamshala, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hptechboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hptechboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:42.100Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:42.100Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13546], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:42.100Z, info:{ description:Himachal Pradesh Takniki Shiksha Board, Dharamshala (http://www.hptechboard.com/) has made available Diploma Certificate in DigiLocker, which can be pulled by students into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Takniki Shiksha Board Dharamshala, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hptechboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hptechboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:42.100Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hptechboard: DataRow\">apisetu.gov.in:hptechboard</span>", children: [13528, 13529, 13547], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:42.100Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:42.100Z, info:{ description:Himachal Pradesh Takniki Shiksha Board, Dharamshala (http://www.hptechboard.com/) has made available Diploma Certificate in DigiLocker, which can be pulled by students into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Himachal Pradesh Takniki Shiksha Board Dharamshala, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hptechboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hptechboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:42.100Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hptechboard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:42.100Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:47.892Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:47.892Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"HSBTE (http://hsbte.org.in/) is issuing marksheets (of Dec 2017 and June 2018 batches) through DigiLocker. These can be pulled by students into their DigiLocker accounts.\">HSBTE (http://hsbte.org.in/) is issui<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Haryana State Board of Technical Education, Haryana\">Haryana State Board of Technical Educ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410587, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hsbte"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13560], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13552, 13553, 13554, 13555, 13556, 13557, 13558, 13559, 13561], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: HSBTE (http://hsbte.org.in/) is issuing marksheets (of Dec 2017 and June 2018 batches) through DigiLocker. These can be pulled by students into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Haryana State Board of Technical Education, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hsbte\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>HSBTE (http://h<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:47.892Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13551, 13562, 13563, 13564, 13565, 13566], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:47.892Z\ninfo: { description:HSBTE (http://hsbte.org.in/) is issuing marksheets (of Dec 2017 and June 2018 batches) through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of Technical Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsbte.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsbte, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:47.892Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:47.892Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13567], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:47.892Z, info:{ description:HSBTE (http://hsbte.org.in/) is issuing marksheets (of Dec 2017 and June 2018 batches) through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of Technical Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsbte.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsbte, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:47.892Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hsbte: DataRow\">apisetu.gov.in:hsbte</span>", children: [13549, 13550, 13568], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:47.892Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:47.892Z, info:{ description:HSBTE (http://hsbte.org.in/) is issuing marksheets (of Dec 2017 and June 2018 batches) through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Haryana State Board of Technical Education, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsbte.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsbte, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:47.892Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsbte/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:47.892Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:54.119Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:54.119Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Class X and XII marksheets and passing certificates of Maharashtra State Board of Secondary and Higher Secondary Education (https://mahahsscboard.maharashtra.gov.in/) are available in DigiLocker for years 1990 to 2017.\">Class X and XII marksheets and passin<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Maharashtra State Board of Secondary and Higher Secondary Education, Maharashtra\">Maharashtra State Board of Secondary <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410588, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["hsscboardmh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13581], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13573, 13574, 13575, 13576, 13577, 13578, 13579, 13580, 13582], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Class X and XII marksheets and passing certificates of Maharashtra State Board of Secondary and Higher Secondary Education (https://mahahsscboard.maharashtra.gov.in/) are available in DigiLocker for years 1990 to 2017.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Maharashtra State Board of Secondary and Higher Secondary Education, Maharashtra\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: hsscboardmh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Class X and XII<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:10:54.119Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13572, 13583, 13584, 13585, 13586, 13587], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:54.119Z\ninfo: { description:Class X and XII marksheets and passing certificates of Maharashtra State Board of Secondary and Higher Secondary Education (https://mahahsscboard.maharashtra.gov.in/) are available in DigiLocker for years 1990 to 2017., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra State Board of Secondary and Higher Secondary Education, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsscboardmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsscboardmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:10:54.119Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:54.119Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13588], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:10:54.119Z, info:{ description:Class X and XII marksheets and passing certificates of Maharashtra State Board of Secondary and Higher Secondary Education (https://mahahsscboard.maharashtra.gov.in/) are available in DigiLocker for years 1990 to 2017., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra State Board of Secondary and Higher Secondary Education, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsscboardmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsscboardmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:54.119Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:hsscboardmh: DataRow\">apisetu.gov.in:hsscboardmh</span>", children: [13570, 13571, 13589], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:10:54.119Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:10:54.119Z, info:{ description:Class X and XII marksheets and passing certificates of Maharashtra State Board of Secondary and Higher Secondary Education (https://mahahsscboard.maharashtra.gov.in/) are available in DigiLocker for years 1990 to 2017., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra State Board of Secondary and Higher Secondary Education, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/hsscboardmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:hsscboardmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:10:54.119Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/hsscboardmh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:10:54.119Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:08.135Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:08.135Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance policies issued by ICICI Lombard (https://www.icicilombard.com) can be fetched by Citizens into their DigiLocker accounts.\">Insurance policies issued by ICICI Lo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ICICI Lombard GIC Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410589, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["icicilombard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13602], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13594, 13595, 13596, 13597, 13598, 13599, 13600, 13601, 13603], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance policies issued by ICICI Lombard (https://www.icicilombard.com) can be fetched by Citizens into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: ICICI Lombard GIC Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: icicilombard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:08.135Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13593, 13604, 13605, 13606, 13607, 13608], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:08.135Z\ninfo: { description:Insurance policies issued by ICICI Lombard (https://www.icicilombard.com) can be fetched by Citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Lombard GIC Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icicilombard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icicilombard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:08.135Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:08.135Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13609], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:08.135Z, info:{ description:Insurance policies issued by ICICI Lombard (https://www.icicilombard.com) can be fetched by Citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Lombard GIC Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icicilombard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icicilombard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:08.135Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:icicilombard: DataRow\">apisetu.gov.in:icicilombard</span>", children: [13591, 13592, 13610], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:08.135Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:08.135Z, info:{ description:Insurance policies issued by ICICI Lombard (https://www.icicilombard.com) can be fetched by Citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Lombard GIC Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icicilombard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icicilombard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:08.135Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icicilombard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:08.135Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:17.046Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:17.046Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by ICICI Prudential Life Insurance Company Ltd.\">APIs provided by ICICI Prudential Lif<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ICICI Prudential Life Insurance Company Ltd\">ICICI Prudential Life Insurance Compa<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410590, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iciciprulife"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13623], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13615, 13616, 13617, 13618, 13619, 13620, 13621, 13622, 13624], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by ICICI Prudential Life Insurance Company Ltd.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: ICICI Prudential Life Insurance Company Ltd\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: iciciprulife\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:17.046Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13614, 13625, 13626, 13627, 13628, 13629], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:17.046Z\ninfo: { description:APIs provided by ICICI Prudential Life Insurance Company Ltd., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Prudential Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iciciprulife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iciciprulife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:17.046Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:17.046Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13630], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:17.046Z, info:{ description:APIs provided by ICICI Prudential Life Insurance Company Ltd., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Prudential Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iciciprulife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iciciprulife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:17.046Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:iciciprulife: DataRow\">apisetu.gov.in:iciciprulife</span>", children: [13612, 13613, 13631], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:17.046Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:17.046Z, info:{ description:APIs provided by ICICI Prudential Life Insurance Company Ltd., termsOfService:https://apisetu.gov.in/terms.php, title:ICICI Prudential Life Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iciciprulife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iciciprulife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:17.046Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iciciprulife/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:17.046Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:23.565Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:23.565Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Institute of Company Secretaries of India is available on DigiLocker. ID Card is available for candidates to pull into their DigiLocker account. ICSI members can also pull their ACS certificates into their DigiLocker account.\">Institute of Company Secretaries of I<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Institute of Company Secretaries of India\">Institute of Company Secretaries of I<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410591, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["icsi"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13644], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13636, 13637, 13638, 13639, 13640, 13641, 13642, 13643, 13645], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Institute of Company Secretaries of India is available on DigiLocker. ID Card is available for candidates to pull into their DigiLocker account. ICSI members can also pull their ACS certificates into their DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Institute of Company Secretaries of India\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: icsi\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Institute of Co<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:23.565Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13635, 13646, 13647, 13648, 13649, 13650], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:23.565Z\ninfo: { description:Institute of Company Secretaries of India is available on DigiLocker. ID Card is available for candidates to pull into their DigiLocker account. ICSI members can also pull their ACS certificates into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Institute of Company Secretaries of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icsi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icsi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:23.565Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:23.565Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13651], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:23.565Z, info:{ description:Institute of Company Secretaries of India is available on DigiLocker. ID Card is available for candidates to pull into their DigiLocker account. ICSI members can also pull their ACS certificates into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Institute of Company Secretaries of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icsi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icsi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:23.565Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:icsi: DataRow\">apisetu.gov.in:icsi</span>", children: [13633, 13634, 13652], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:23.565Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:23.565Z, info:{ description:Institute of Company Secretaries of India is available on DigiLocker. ID Card is available for candidates to pull into their DigiLocker account. ICSI members can also pull their ACS certificates into their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Institute of Company Secretaries of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/icsi.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:icsi, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:23.565Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/icsi/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:23.565Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:42.264Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:42.264Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Dept of Registration & Stamps, Maharashtra (https://esearchigr.maharashtra.gov.in) is issuing digital Leave & License Certificates into citizens' DigiLocker accounts.\">Dept of Registration & Stamps, Mahara<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Registration & Stamps, Maharashtra\">Department of Registration & Stamps, <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410592, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["igrmaharashtra"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13665], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13657, 13658, 13659, 13660, 13661, 13662, 13663, 13664, 13666], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Dept of Registration & Stamps, Maharashtra (https://esearchigr.maharashtra.gov.in) is issuing digital Leave & License Certificates into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Registration & Stamps, Maharashtra\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: igrmaharashtra\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Dept of Registr<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:42.264Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13656, 13667, 13668, 13669, 13670, 13671], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:42.264Z\ninfo: { description:Dept of Registration & Stamps, Maharashtra (https://esearchigr.maharashtra.gov.in) is issuing digital Leave & License Certificates into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Registration & Stamps, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/igrmaharashtra.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:igrmaharashtra, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:42.264Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:42.264Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13672], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:42.264Z, info:{ description:Dept of Registration & Stamps, Maharashtra (https://esearchigr.maharashtra.gov.in) is issuing digital Leave & License Certificates into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Registration & Stamps, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/igrmaharashtra.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:igrmaharashtra, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:42.264Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:igrmaharashtra: DataRow\">apisetu.gov.in:igrmaharashtra</span>", children: [13654, 13655, 13673], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:42.264Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:42.264Z, info:{ description:Dept of Registration & Stamps, Maharashtra (https://esearchigr.maharashtra.gov.in) is issuing digital Leave & License Certificates into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Registration & Stamps, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/igrmaharashtra.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:igrmaharashtra, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:42.264Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/igrmaharashtra/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:42.264Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:47.607Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:47.607Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Certificates and Marksheets of the training conducted by Indian Navy are available to the Officers/ Sailors in their DigiLocker accounts.\">Certificates and Marksheets of the tr<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Indian Navy (INS Valsura)"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410593, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["insvalsura"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13686], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13678, 13679, 13680, 13681, 13682, 13683, 13684, 13685, 13687], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Certificates and Marksheets of the training conducted by Indian Navy are available to the Officers/ Sailors in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Indian Navy (INS Valsura)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: insvalsura\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Certificates an<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:47.607Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13677, 13688, 13689, 13690, 13691, 13692], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:47.607Z\ninfo: { description:Certificates and Marksheets of the training conducted by Indian Navy are available to the Officers/ Sailors in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Indian Navy (INS Valsura), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/insvalsura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:insvalsura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:47.607Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:47.607Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13693], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:47.607Z, info:{ description:Certificates and Marksheets of the training conducted by Indian Navy are available to the Officers/ Sailors in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Indian Navy (INS Valsura), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/insvalsura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:insvalsura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:47.607Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:insvalsura: DataRow\">apisetu.gov.in:insvalsura</span>", children: [13675, 13676, 13694], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:47.607Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:47.607Z, info:{ description:Certificates and Marksheets of the training conducted by Indian Navy are available to the Officers/ Sailors in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Indian Navy (INS Valsura), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/insvalsura.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:insvalsura, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:47.607Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/insvalsura/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:47.607Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:53.224Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:53.224Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eSubscription Voucher for LPG connections provided by IOCL (https://www.iocl.com/) are made available to citizens in their DigiLocker accounts.\">eSubscription Voucher for LPG connect<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ministry of Petroleum and Natural Gas (IOCL)\">Ministry of Petroleum and Natural Gas<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410594, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["iocl"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13707], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13699, 13700, 13701, 13702, 13703, 13704, 13705, 13706, 13708], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eSubscription Voucher for LPG connections provided by IOCL (https://www.iocl.com/) are made available to citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Ministry of Petroleum and Natural Gas (IOCL)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: iocl\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eSubscription V<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:53.224Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13698, 13709, 13710, 13711, 13712, 13713], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:53.224Z\ninfo: { description:eSubscription Voucher for LPG connections provided by IOCL (https://www.iocl.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (IOCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iocl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iocl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:53.224Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:53.224Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13714], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:53.224Z, info:{ description:eSubscription Voucher for LPG connections provided by IOCL (https://www.iocl.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (IOCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iocl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iocl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:53.224Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:iocl: DataRow\">apisetu.gov.in:iocl</span>", children: [13696, 13697, 13715], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:53.224Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:53.224Z, info:{ description:eSubscription Voucher for LPG connections provided by IOCL (https://www.iocl.com/) are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Petroleum and Natural Gas (IOCL), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/iocl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:iocl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:11:53.224Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/iocl/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:53.224Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:58.941Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:58.941Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@digitallocker.gov.in"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [13720], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@digitallocker.gov.in\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@digitallocker.gov.in<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This document provides detailed specification of the Digital Locker Pull APIs. The Pull model of integration with Digital Locker enables a Digital Locker user to search a document/certificate from issuer repository and fetch (pull) it into Digital Locker. The issuer departments can use these APIs for the documents that are not Aadhaar seeded. The issuer organization integrating with Digital Locker maintains the documents/certificates in its own repository (database or file system). The issuer application provides APIs to Digital Locker to access the documents in this repository. Each issuer organization will have to implement 2 APIs to integrate with the Digital Locker system.\">This document provides detailed speci<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://ndh.digitallocker.gov.in/terms.php\">https://ndh.digitallocker.gov.in/term<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["DigiLocker Issuer APIs"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410595, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["issuer"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13730], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13721, 13722, 13723, 13724, 13725, 13726, 13727, 13728, 13729, 13731], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@digitallocker.gov.in }\ndescription: This document provides detailed specification of the Digital Locker Pull APIs. The Pull model of integration with Digital Locker enables a Digital Locker user to search a document/certificate from issuer repository and fetch (pull) it into Digital Locker. The issuer departments can use these APIs for the documents that are not Aadhaar seeded. The issuer organization integrating with Digital Locker maintains the documents/certificates in its own repository (database or file system). The issuer application provides APIs to Digital Locker to access the documents in this repository. Each issuer organization will have to implement 2 APIs to integrate with the Digital Locker system.\ntermsOfService: https://ndh.digitallocker.gov.in/terms.php\ntitle: DigiLocker Issuer APIs\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: issuer\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:11:58.941Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13719, 13732, 13733, 13734, 13735, 13736], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:58.941Z\ninfo: { contact:{ email:support@digitallocker.gov.in }, description:This document provides detailed specification of the Digital Locker Pull APIs. The Pull model of integration with Digital Locker enables a Digital Locker user to search a document/certificate from issuer repository and fetch (pull) it into Digital Locker. The issuer departments can use these APIs for the documents that are not Aadhaar seeded. The issuer organization integrating with Digital Locker maintains the documents/certificates in its own repository (database or file system). The issuer application provides APIs to Digital Locker to access the documents in this repository. Each issuer organization will have to implement 2 APIs to integrate with the Digital Locker system., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:DigiLocker Issuer APIs, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/issuer.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:issuer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:11:58.941Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:58.941Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13737], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:11:58.941Z, info:{ contact:{ email:support@digitallocker.gov.in }, description:This document provides detailed specification of the Digital Locker Pull APIs. The Pull model of integration with Digital Locker enables a Digital Locker user to search a document/certificate from issuer repository and fetch (pull) it into Digital Locker. The issuer departments can use these APIs for the documents that are not Aadhaar seeded. The issuer organization integrating with Digital Locker maintains the documents/certificates in its own repository (database or file system). The issuer application provides APIs to Digital Locker to access the documents in this repository. Each issuer organization will have to implement 2 APIs to integrate with the Digital Locker system., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:DigiLocker Issuer APIs, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/issuer.yaml, version:3.0 }..., updated:2021-02-07T16:11:58.941Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/issuer/3.0.0/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:issuer: DataRow\">apisetu.gov.in:issuer</span>", children: [13717, 13718, 13738], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:11:58.941Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:11:58.941Z, info:{ contact:{ email:support@digitallocker.gov.in }, description:This document provides detailed specification of the Digital Locker Pull APIs. The Pull model of integration with Digital Locker enables a Digital Locker user to search a document/certificate from issuer repository and fetch (pull) it into Digital Locker. The issuer departments can use these APIs for the documents that are not Aadhaar seeded. The issuer organization integrating with Digital Locker maintains the documents/certificates in its own repository (database or file system). The issuer application provides APIs to Digital Locker to access the documents in this repository. Each issuer organization will have to implement 2 APIs to integrate with the Digital Locker system., termsOfService:https://ndh.digitallocker.gov.in/terms.php, title:DigiLocker Issuer APIs, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_spec... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:11:58.941Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:05.187Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:05.187Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jharkhand Academic Council (JAC) is issuing marksheets & passing certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2009-2017 [Class XII], 2009-2017 [Class X].\">Jharkhand Academic Council (JAC) is i<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jharkhand State Board (Jharkhand Academic Council), Jharkhand\">Jharkhand State Board (Jharkhand Acad<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410596, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["jac"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13751], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13743, 13744, 13745, 13746, 13747, 13748, 13749, 13750, 13752], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Jharkhand Academic Council (JAC) is issuing marksheets & passing certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2009-2017 [Class XII], 2009-2017 [Class X].\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Jharkhand State Board (Jharkhand Academic Council), Jharkhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: jac\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Jharkhand Acade<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:05.187Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13742, 13753, 13754, 13755, 13756, 13757], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:05.187Z\ninfo: { description:Jharkhand Academic Council (JAC) is issuing marksheets & passing certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2009-2017 [Class XII], 2009-2017 [Class X]., termsOfService:https://apisetu.gov.in/terms.php, title:Jharkhand State Board (Jharkhand Academic Council), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jac.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jac, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:05.187Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:05.187Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13758], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:05.187Z, info:{ description:Jharkhand Academic Council (JAC) is issuing marksheets & passing certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2009-2017 [Class XII], 2009-2017 [Class X]., termsOfService:https://apisetu.gov.in/terms.php, title:Jharkhand State Board (Jharkhand Academic Council), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jac.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jac, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:05.187Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:jac: DataRow\">apisetu.gov.in:jac</span>", children: [13740, 13741, 13759], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:05.187Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:05.187Z, info:{ description:Jharkhand Academic Council (JAC) is issuing marksheets & passing certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2009-2017 [Class XII], 2009-2017 [Class X]., termsOfService:https://apisetu.gov.in/terms.php, title:Jharkhand State Board (Jharkhand Academic Council), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jac.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jac, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:05.187Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jac/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:05.187Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:11.527Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:11.527Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Joint Entrance Examination Council (https://jeecup.nic.in) is providing digital Admit Cards for 2018 entrance examination of Diploma courses in the Polytechnics / Institutes affiliated to Board Of Technical Education, U.P.\">Joint Entrance Examination Council (h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Joint Entrance Examination Council, Uttar Pradesh, Uttar Pradesh\">Joint Entrance Examination Council, U<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410597, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["jeecup"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13772], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13764, 13765, 13766, 13767, 13768, 13769, 13770, 13771, 13773], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Joint Entrance Examination Council (https://jeecup.nic.in) is providing digital Admit Cards for 2018 entrance examination of Diploma courses in the Polytechnics / Institutes affiliated to Board Of Technical Education, U.P.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Joint Entrance Examination Council, Uttar Pradesh, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: jeecup\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Joint Entrance <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:11.527Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13763, 13774, 13775, 13776, 13777, 13778], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:11.527Z\ninfo: { description:Joint Entrance Examination Council (https://jeecup.nic.in) is providing digital Admit Cards for 2018 entrance examination of Diploma courses in the Polytechnics / Institutes affiliated to Board Of Technical Education, U.P., termsOfService:https://apisetu.gov.in/terms.php, title:Joint Entrance Examination Council, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jeecup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jeecup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:11.527Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:11.527Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13779], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:11.527Z, info:{ description:Joint Entrance Examination Council (https://jeecup.nic.in) is providing digital Admit Cards for 2018 entrance examination of Diploma courses in the Polytechnics / Institutes affiliated to Board Of Technical Education, U.P., termsOfService:https://apisetu.gov.in/terms.php, title:Joint Entrance Examination Council, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jeecup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jeecup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:11.527Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:jeecup: DataRow\">apisetu.gov.in:jeecup</span>", children: [13761, 13762, 13780], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:11.527Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:11.527Z, info:{ description:Joint Entrance Examination Council (https://jeecup.nic.in) is providing digital Admit Cards for 2018 entrance examination of Diploma courses in the Polytechnics / Institutes affiliated to Board Of Technical Education, U.P., termsOfService:https://apisetu.gov.in/terms.php, title:Joint Entrance Examination Council, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jeecup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jeecup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:11.527Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jeecup/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:11.527Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:17.945Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:17.945Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jharkhand e-District is a comprehensive and web enabled service portal that acts as an electronic gateway into the Government's portfolio of services. Jharsewa provides Certificates like Birth, Death, Income, Caste and Residence Certificates in Digilocker.\">Jharkhand e-District is a comprehensi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Jharsewa (eDistrict), Jharkhand"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410598, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["jharsewa"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13793], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13785, 13786, 13787, 13788, 13789, 13790, 13791, 13792, 13794], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Jharkhand e-District is a comprehensive and web enabled service portal that acts as an electronic gateway into the Government's portfolio of services. Jharsewa provides Certificates like Birth, Death, Income, Caste and Residence Certificates in Digilocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Jharsewa (eDistrict), Jharkhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: jharsewa\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Jharkhand e-Dis<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:17.945Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13784, 13795, 13796, 13797, 13798, 13799], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:17.945Z\ninfo: { description:Jharkhand e-District is a comprehensive and web enabled service portal that acts as an electronic gateway into the Government's portfolio of services. Jharsewa provides Certificates like Birth, Death, Income, Caste and Residence Certificates in Digilocker., termsOfService:https://apisetu.gov.in/terms.php, title:Jharsewa (eDistrict), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jharsewa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jharsewa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:17.945Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:17.945Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13800], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:17.945Z, info:{ description:Jharkhand e-District is a comprehensive and web enabled service portal that acts as an electronic gateway into the Government's portfolio of services. Jharsewa provides Certificates like Birth, Death, Income, Caste and Residence Certificates in Digilocker., termsOfService:https://apisetu.gov.in/terms.php, title:Jharsewa (eDistrict), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jharsewa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jharsewa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:17.945Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:jharsewa: DataRow\">apisetu.gov.in:jharsewa</span>", children: [13782, 13783, 13801], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:17.945Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:17.945Z, info:{ description:Jharkhand e-District is a comprehensive and web enabled service portal that acts as an electronic gateway into the Government's portfolio of services. Jharsewa provides Certificates like Birth, Death, Income, Caste and Residence Certificates in Digilocker., termsOfService:https://apisetu.gov.in/terms.php, title:Jharsewa (eDistrict), Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jharsewa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jharsewa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:17.945Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jharsewa/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:17.945Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:29.817Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:29.817Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Transfer Certificates issued by JNRM can be downloaded in citizen's DigiLocker account.\">Transfer Certificates issued by JNRM <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Jawaharlal Nehru Rajkeeya Mahavidyalaya"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410599, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["jnrmand"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13814], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13806, 13807, 13808, 13809, 13810, 13811, 13812, 13813, 13815], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Transfer Certificates issued by JNRM can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Jawaharlal Nehru Rajkeeya Mahavidyalaya\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: jnrmand\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Transfer Certif<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:29.817Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13805, 13816, 13817, 13818, 13819, 13820], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:29.817Z\ninfo: { description:Transfer Certificates issued by JNRM can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Jawaharlal Nehru Rajkeeya Mahavidyalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jnrmand.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jnrmand, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:29.817Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:29.817Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13821], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:29.817Z, info:{ description:Transfer Certificates issued by JNRM can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Jawaharlal Nehru Rajkeeya Mahavidyalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jnrmand.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jnrmand, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:29.817Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:jnrmand: DataRow\">apisetu.gov.in:jnrmand</span>", children: [13803, 13804, 13822], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:29.817Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:29.817Z, info:{ description:Transfer Certificates issued by JNRM can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Jawaharlal Nehru Rajkeeya Mahavidyalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/jnrmand.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:jnrmand, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:29.817Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/jnrmand/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:29.817Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:35.490Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:35.490Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jaypee University Of Information Technology, Waknaghat (H. P.) (http://www.juit.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Jaypee University Of Information Technology.\">Jaypee University Of Information Tech<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jaypee University Of Information Technology, Waknaghat (H. P.)\">Jaypee University Of Information Tech<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410600, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["juit"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13835], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13827, 13828, 13829, 13830, 13831, 13832, 13833, 13834, 13836], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Jaypee University Of Information Technology, Waknaghat (H. P.) (http://www.juit.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Jaypee University Of Information Technology.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Jaypee University Of Information Technology, Waknaghat (H. P.)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: juit\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Jaypee Universi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:35.490Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13826, 13837, 13838, 13839, 13840, 13841], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:35.490Z\ninfo: { description:Jaypee University Of Information Technology, Waknaghat (H. P.) (http://www.juit.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Jaypee University Of Information Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Jaypee University Of Information Technology, Waknaghat (H. P.), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/juit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:juit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:35.490Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:35.490Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13842], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:35.490Z, info:{ description:Jaypee University Of Information Technology, Waknaghat (H. P.) (http://www.juit.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Jaypee University Of Information Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Jaypee University Of Information Technology, Waknaghat (H. P.), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/juit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:juit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:35.490Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:juit: DataRow\">apisetu.gov.in:juit</span>", children: [13824, 13825, 13843], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:35.490Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:35.490Z, info:{ description:Jaypee University Of Information Technology, Waknaghat (H. P.) (http://www.juit.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Jaypee University Of Information Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Jaypee University Of Information Technology, Waknaghat (H. P.), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/juit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:juit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:35.490Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/juit/3.0.0/openapi.yaml, openapiVer:3.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:35.490Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:41.541Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:41.541Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The following issued documents can be integrated with DigiLocker and get used by candidates for service delivery - 1.One Time Verification -OTV certificate � issued to candidates qualified for appointment for posts in Govt. Sector to produce to the concerned dept. after scrutinizing their the relevant documents to prove their qualifications, age, etc.2. Admission Tickets for appearing Online, OMR Exams, Physical Test, Interview etc. 3.Departmental Test Certificates- is issued to employees in Govt. sector\">The following issued documents can be<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["KERALA PUBLIC SERVICE COMMISSION, Kerala"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410601, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["keralapsc"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13856], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13848, 13849, 13850, 13851, 13852, 13853, 13854, 13855, 13857], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The following issued documents can be integrated with DigiLocker and get used by candidates for service delivery - 1.One Time Verification -OTV certificate � issued to candidates qualified for appointment for posts in Govt. Sector to produce to the concerned dept. after scrutinizing their the relevant documents to prove their qualifications, age, etc.2. Admission Tickets for appearing Online, OMR Exams, Physical Test, Interview etc. 3.Departmental Test Certificates- is issued to employees in Govt. sector\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: KERALA PUBLIC SERVICE COMMISSION, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: keralapsc\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The following i<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:41.541Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13847, 13858, 13859, 13860, 13861, 13862], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:41.541Z\ninfo: { description:The following issued documents can be integrated with DigiLocker and get used by candidates for service delivery - 1.One Time Verification -OTV certificate � issued to candidates qualified for appointment for posts in Govt. Sector to produce to the concerned dept. after scrutinizing their the relevant documents to prove their qualifications, age, etc.2. Admission Tickets for appearing Online, OMR Exams, Physical Test, Interview etc. 3.Departmental Test Certificates- is issued to employees in Govt. sector, termsOfService:https://apisetu.gov.in/terms.php, title:KERALA PUBLIC SERVICE COMMISSION, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/keralapsc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:keralapsc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:41.541Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:41.541Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13863], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:41.541Z, info:{ description:The following issued documents can be integrated with DigiLocker and get used by candidates for service delivery - 1.One Time Verification -OTV certificate � issued to candidates qualified for appointment for posts in Govt. Sector to produce to the concerned dept. after scrutinizing their the relevant documents to prove their qualifications, age, etc.2. Admission Tickets for appearing Online, OMR Exams, Physical Test, Interview etc. 3.Departmental Test Certificates- is issued to employees in Govt. sector, termsOfService:https://apisetu.gov.in/terms.php, title:KERALA PUBLIC SERVICE COMMISSION, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/keralapsc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:keralapsc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:41.541Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/keralapsc/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:keralapsc: DataRow\">apisetu.gov.in:keralapsc</span>", children: [13845, 13846, 13864], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:41.541Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:41.541Z, info:{ description:The following issued documents can be integrated with DigiLocker and get used by candidates for service delivery - 1.One Time Verification -OTV certificate � issued to candidates qualified for appointment for posts in Govt. Sector to produce to the concerned dept. after scrutinizing their the relevant documents to prove their qualifications, age, etc.2. Admission Tickets for appearing Online, OMR Exams, Physical Test, Interview etc. 3.Departmental Test Certificates- is issued to employees in Govt. sector, termsOfService:https://apisetu.gov.in/terms.php, title:KERALA PUBLIC SERVICE COMMISSION, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/keralapsc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:keralapsc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T1... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:41.541Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:47.704Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:47.704Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"KIADB, AP (http://en.kiadb.in/) is the online s for Karnataka State Govt. Certain documents issued by it (e.g. Allotment Letter,Building Plan, Water Supply Connection, NOC For Banks etc) are made available in citizens' DigiLocker accounts.\">KIADB, AP (http://en.kiadb.in/) is th<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Karnataka Industrial Areas Development Board, Karnataka\">Karnataka Industrial Areas Developmen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410602, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kiadb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13877], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13869, 13870, 13871, 13872, 13873, 13874, 13875, 13876, 13878], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: KIADB, AP (http://en.kiadb.in/) is the online s for Karnataka State Govt. Certain documents issued by it (e.g. Allotment Letter,Building Plan, Water Supply Connection, NOC For Banks etc) are made available in citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Karnataka Industrial Areas Development Board, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: kiadb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>KIADB, AP (http<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:47.704Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13868, 13879, 13880, 13881, 13882, 13883], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:47.704Z\ninfo: { description:KIADB, AP (http://en.kiadb.in/) is the online s for Karnataka State Govt. Certain documents issued by it (e.g. Allotment Letter,Building Plan, Water Supply Connection, NOC For Banks etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Industrial Areas Development Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kiadb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kiadb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:47.704Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:47.704Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13884], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:47.704Z, info:{ description:KIADB, AP (http://en.kiadb.in/) is the online s for Karnataka State Govt. Certain documents issued by it (e.g. Allotment Letter,Building Plan, Water Supply Connection, NOC For Banks etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Industrial Areas Development Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kiadb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kiadb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:47.704Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:kiadb: DataRow\">apisetu.gov.in:kiadb</span>", children: [13866, 13867, 13885], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:47.704Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:47.704Z, info:{ description:KIADB, AP (http://en.kiadb.in/) is the online s for Karnataka State Govt. Certain documents issued by it (e.g. Allotment Letter,Building Plan, Water Supply Connection, NOC For Banks etc) are made available in citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Industrial Areas Development Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kiadb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kiadb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:47.704Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kiadb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:47.704Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:53.526Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:53.526Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Krishna Kanta Handiqui State Open University (http://www.kkhsou.in//) has made available their Results of MA (Education,Assamese,Political Sc,Sociology,English) & MBA programmes, for the year 2018, in DigiLocker, which can be pulled by students into their accounts.\">Krishna Kanta Handiqui State Open Uni<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Krishna Kanta Handique State Open University (KKHSOU), Assam\">Krishna Kanta Handique State Open Uni<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410603, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kkhsou"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13898], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13890, 13891, 13892, 13893, 13894, 13895, 13896, 13897, 13899], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Krishna Kanta Handiqui State Open University (http://www.kkhsou.in//) has made available their Results of MA (Education,Assamese,Political Sc,Sociology,English) & MBA programmes, for the year 2018, in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Krishna Kanta Handique State Open University (KKHSOU), Assam\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: kkhsou\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Krishna Kanta H<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:53.526Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13889, 13900, 13901, 13902, 13903, 13904], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:53.526Z\ninfo: { description:Krishna Kanta Handiqui State Open University (http://www.kkhsou.in//) has made available their Results of MA (Education,Assamese,Political Sc,Sociology,English) & MBA programmes, for the year 2018, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Krishna Kanta Handique State Open University (KKHSOU), Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kkhsou.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kkhsou, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:53.526Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:53.526Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13905], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:53.526Z, info:{ description:Krishna Kanta Handiqui State Open University (http://www.kkhsou.in//) has made available their Results of MA (Education,Assamese,Political Sc,Sociology,English) & MBA programmes, for the year 2018, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Krishna Kanta Handique State Open University (KKHSOU), Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kkhsou.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kkhsou, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:53.526Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:kkhsou: DataRow\">apisetu.gov.in:kkhsou</span>", children: [13887, 13888, 13906], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:53.526Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:53.526Z, info:{ description:Krishna Kanta Handiqui State Open University (http://www.kkhsou.in//) has made available their Results of MA (Education,Assamese,Political Sc,Sociology,English) & MBA programmes, for the year 2018, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Krishna Kanta Handique State Open University (KKHSOU), Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kkhsou.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kkhsou, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:53.526Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kkhsou/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:53.526Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:59.620Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:59.620Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance Policies such as Health, Car, Two Wheeler, Group, Home etc. issued by KOTAK MAHINDRA GENERAL INSURANCE are available to be pulled by citizens.\">Insurance Policies such as Health, Ca<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Kotak Mahindra General Insurance Company Ltd.\">Kotak Mahindra General Insurance Comp<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410604, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kotakgeneralinsurance"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13919], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13911, 13912, 13913, 13914, 13915, 13916, 13917, 13918, 13920], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance Policies such as Health, Car, Two Wheeler, Group, Home etc. issued by KOTAK MAHINDRA GENERAL INSURANCE are available to be pulled by citizens.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Kotak Mahindra General Insurance Company Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: kotakgeneralinsurance\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance Polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:12:59.620Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13910, 13921, 13922, 13923, 13924, 13925], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:59.620Z\ninfo: { description:Insurance Policies such as Health, Car, Two Wheeler, Group, Home etc. issued by KOTAK MAHINDRA GENERAL INSURANCE are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Kotak Mahindra General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kotakgeneralinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kotakgeneralinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:12:59.620Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:59.620Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13926], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:12:59.620Z, info:{ description:Insurance Policies such as Health, Car, Two Wheeler, Group, Home etc. issued by KOTAK MAHINDRA GENERAL INSURANCE are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Kotak Mahindra General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kotakgeneralinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kotakgeneralinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:59.620Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:kotakgeneralinsurance: DataRow\">apisetu.gov.in:kotakgeneralinsurance</span>", children: [13908, 13909, 13927], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:12:59.620Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:12:59.620Z, info:{ description:Insurance Policies such as Health, Car, Two Wheeler, Group, Home etc. issued by KOTAK MAHINDRA GENERAL INSURANCE are available to be pulled by citizens., termsOfService:https://apisetu.gov.in/terms.php, title:Kotak Mahindra General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kotakgeneralinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kotakgeneralinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:12:59.620Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kotakgeneralinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:12:59.620Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:05.414Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:05.414Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Karnataka Secondary Education Examination Board (http://kseeb.kar.nic.in) is providing passing certificates of SSLC(10th Std) of April and June-2018 Examinations.\">Karnataka Secondary Education Examina<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Karnataka Secondary Education Examination Board, Karnataka\">Karnataka Secondary Education Examina<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410605, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["kseebkr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13940], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13932, 13933, 13934, 13935, 13936, 13937, 13938, 13939, 13941], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Karnataka Secondary Education Examination Board (http://kseeb.kar.nic.in) is providing passing certificates of SSLC(10th Std) of April and June-2018 Examinations.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Karnataka Secondary Education Examination Board, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: kseebkr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Karnataka Secon<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:05.414Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13931, 13942, 13943, 13944, 13945, 13946], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:05.414Z\ninfo: { description:Karnataka Secondary Education Examination Board (http://kseeb.kar.nic.in) is providing passing certificates of SSLC(10th Std) of April and June-2018 Examinations., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Secondary Education Examination Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kseebkr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kseebkr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:05.414Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:05.414Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13947], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:05.414Z, info:{ description:Karnataka Secondary Education Examination Board (http://kseeb.kar.nic.in) is providing passing certificates of SSLC(10th Std) of April and June-2018 Examinations., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Secondary Education Examination Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kseebkr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kseebkr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:05.414Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:kseebkr: DataRow\">apisetu.gov.in:kseebkr</span>", children: [13929, 13930, 13948], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:05.414Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:05.414Z, info:{ description:Karnataka Secondary Education Examination Board (http://kseeb.kar.nic.in) is providing passing certificates of SSLC(10th Std) of April and June-2018 Examinations., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Secondary Education Examination Board, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/kseebkr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:kseebkr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:05.414Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/kseebkr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:05.414Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:11.044Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:11.044Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"eSigned certificates issued by Department of Information Technology, Biotechnology and Science &Technology (http://itbt.karnataka.gov.in/pages/home.aspx) can be downloaded through DigiLocker.\">eSigned certificates issued by Depart<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Department of IT and BT, Karnataka"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410606, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ktech"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13961], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13953, 13954, 13955, 13956, 13957, 13958, 13959, 13960, 13962], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: eSigned certificates issued by Department of Information Technology, Biotechnology and Science &Technology (http://itbt.karnataka.gov.in/pages/home.aspx) can be downloaded through DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of IT and BT, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ktech\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>eSigned certifi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:11.044Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13952, 13963, 13964, 13965, 13966, 13967], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:11.044Z\ninfo: { description:eSigned certificates issued by Department of Information Technology, Biotechnology and Science &Technology (http://itbt.karnataka.gov.in/pages/home.aspx) can be downloaded through DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and BT, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ktech.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ktech, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:11.044Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:11.044Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13968], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:11.044Z, info:{ description:eSigned certificates issued by Department of Information Technology, Biotechnology and Science &Technology (http://itbt.karnataka.gov.in/pages/home.aspx) can be downloaded through DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and BT, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ktech.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ktech, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:11.044Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ktech: DataRow\">apisetu.gov.in:ktech</span>", children: [13950, 13951, 13969], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:11.044Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:11.044Z, info:{ description:eSigned certificates issued by Department of Information Technology, Biotechnology and Science &Technology (http://itbt.karnataka.gov.in/pages/home.aspx) can be downloaded through DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:Department of IT and BT, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ktech.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ktech, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:11.044Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ktech/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:11.044Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:16.628Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:16.628Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Labour Resources (http://labour.bih.nic.in/) issues various certificates to the citizens. They can be pulled into citizen's DigiLocker account. Currently available- Shops and Commercial Establishments Registration Certificate\">Department of Labour Resources (http:<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Labour Resource Department, Bihar"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410607, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["labourbih"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [13982], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13974, 13975, 13976, 13977, 13978, 13979, 13980, 13981, 13983], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Department of Labour Resources (http://labour.bih.nic.in/) issues various certificates to the citizens. They can be pulled into citizen's DigiLocker account. Currently available- Shops and Commercial Establishments Registration Certificate\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Labour Resource Department, Bihar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: labourbih\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Department of L<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:16.628Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13973, 13984, 13985, 13986, 13987, 13988], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:16.628Z\ninfo: { description:Department of Labour Resources (http://labour.bih.nic.in/) issues various certificates to the citizens. They can be pulled into citizen's DigiLocker account. Currently available- Shops and Commercial Establishments Registration Certificate, termsOfService:https://apisetu.gov.in/terms.php, title:Labour Resource Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/labourbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:labourbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:16.628Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:16.628Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [13989], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:16.628Z, info:{ description:Department of Labour Resources (http://labour.bih.nic.in/) issues various certificates to the citizens. They can be pulled into citizen's DigiLocker account. Currently available- Shops and Commercial Establishments Registration Certificate, termsOfService:https://apisetu.gov.in/terms.php, title:Labour Resource Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/labourbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:labourbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:16.628Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:labourbih: DataRow\">apisetu.gov.in:labourbih</span>", children: [13971, 13972, 13990], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:16.628Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:16.628Z, info:{ description:Department of Labour Resources (http://labour.bih.nic.in/) issues various certificates to the citizens. They can be pulled into citizen's DigiLocker account. Currently available- Shops and Commercial Establishments Registration Certificate, termsOfService:https://apisetu.gov.in/terms.php, title:Labour Resource Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/labourbih.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:labourbih, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:16.628Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/labourbih/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:16.628Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:22.436Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:22.436Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Revenue Department - Land Records, Karnataka.\">APIs provided by Revenue Department -<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Revenue Department - Land Records, Karnataka\">Revenue Department - Land Records, Ka<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410608, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["landrecordskar"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14003], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [13995, 13996, 13997, 13998, 13999, 14000, 14001, 14002, 14004], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Revenue Department - Land Records, Karnataka.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Revenue Department - Land Records, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: landrecordskar\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:22.436Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [13994, 14005, 14006, 14007, 14008, 14009], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:22.436Z\ninfo: { description:APIs provided by Revenue Department - Land Records, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department - Land Records, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/landrecordskar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:landrecordskar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:22.436Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:22.436Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14010], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:22.436Z, info:{ description:APIs provided by Revenue Department - Land Records, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department - Land Records, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/landrecordskar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:landrecordskar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:22.436Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:landrecordskar: DataRow\">apisetu.gov.in:landrecordskar</span>", children: [13992, 13993, 14011], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:22.436Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:22.436Z, info:{ description:APIs provided by Revenue Department - Land Records, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department - Land Records, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/landrecordskar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:landrecordskar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:22.436Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/landrecordskar/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:22.436Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:28.209Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:28.209Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Transfer Certificate issued by Andaman Law College can be downloaded in citizen's DigiLocker account.\">Transfer Certificate issued by Andama<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Andaman Law College, Andaman & Nicobar"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410609, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["lawcollegeandaman"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14024], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14016, 14017, 14018, 14019, 14020, 14021, 14022, 14023, 14025], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Transfer Certificate issued by Andaman Law College can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Andaman Law College, Andaman & Nicobar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: lawcollegeandaman\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Transfer Certif<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:28.209Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14015, 14026, 14027, 14028, 14029, 14030], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:28.209Z\ninfo: { description:Transfer Certificate issued by Andaman Law College can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Andaman Law College, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/lawcollegeandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:lawcollegeandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:28.209Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:28.209Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14031], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:28.209Z, info:{ description:Transfer Certificate issued by Andaman Law College can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Andaman Law College, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/lawcollegeandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:lawcollegeandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:28.209Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:lawcollegeandaman: DataRow\">apisetu.gov.in:lawcollegeandaman</span>", children: [14013, 14014, 14032], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:28.209Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:28.209Z, info:{ description:Transfer Certificate issued by Andaman Law College can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Andaman Law College, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/lawcollegeandaman.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:lawcollegeandaman, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:28.209Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/lawcollegeandaman/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:28.209Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:39.861Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:39.861Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Licenses issued by Department of Legal Metrology, Uttar Pradesh can be pulled by citizens into their DigiLocker accounts.\">Licenses issued by Department of Lega<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Legal Metrology, Uttar Pradesh\">Department of Legal Metrology, Uttar <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410610, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["legalmetrologyup"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14045], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14037, 14038, 14039, 14040, 14041, 14042, 14043, 14044, 14046], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Licenses issued by Department of Legal Metrology, Uttar Pradesh can be pulled by citizens into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Legal Metrology, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: legalmetrologyup\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Licenses issued<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:39.861Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14036, 14047, 14048, 14049, 14050, 14051], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:39.861Z\ninfo: { description:Licenses issued by Department of Legal Metrology, Uttar Pradesh can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Legal Metrology, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/legalmetrologyup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:legalmetrologyup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:39.861Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:39.861Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14052], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:39.861Z, info:{ description:Licenses issued by Department of Legal Metrology, Uttar Pradesh can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Legal Metrology, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/legalmetrologyup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:legalmetrologyup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:39.861Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:legalmetrologyup: DataRow\">apisetu.gov.in:legalmetrologyup</span>", children: [14034, 14035, 14053], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:39.861Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:39.861Z, info:{ description:Licenses issued by Department of Legal Metrology, Uttar Pradesh can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Legal Metrology, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/legalmetrologyup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:legalmetrologyup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:39.861Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/legalmetrologyup/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:39.861Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:45.423Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:45.423Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Life Insurance policies issued by Life Insurance Corporation of India (https://www.licindia.in/) are available on DigiLocker and can be downloaded by citizens to their account.\">Life Insurance policies issued by Lif<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Life Insurance Corporation of India"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410611, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["licindia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14066], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14058, 14059, 14060, 14061, 14062, 14063, 14064, 14065, 14067], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Life Insurance policies issued by Life Insurance Corporation of India (https://www.licindia.in/) are available on DigiLocker and can be downloaded by citizens to their account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Life Insurance Corporation of India\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: licindia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Life Insurance <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:45.423Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14057, 14068, 14069, 14070, 14071, 14072], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:45.423Z\ninfo: { description:Life Insurance policies issued by Life Insurance Corporation of India (https://www.licindia.in/) are available on DigiLocker and can be downloaded by citizens to their account., termsOfService:https://apisetu.gov.in/terms.php, title:Life Insurance Corporation of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/licindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:licindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:45.423Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:45.423Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14073], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:45.423Z, info:{ description:Life Insurance policies issued by Life Insurance Corporation of India (https://www.licindia.in/) are available on DigiLocker and can be downloaded by citizens to their account., termsOfService:https://apisetu.gov.in/terms.php, title:Life Insurance Corporation of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/licindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:licindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:45.423Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:licindia: DataRow\">apisetu.gov.in:licindia</span>", children: [14055, 14056, 14074], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:45.423Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:45.423Z, info:{ description:Life Insurance policies issued by Life Insurance Corporation of India (https://www.licindia.in/) are available on DigiLocker and can be downloaded by citizens to their account., termsOfService:https://apisetu.gov.in/terms.php, title:Life Insurance Corporation of India, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/licindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:licindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:45.423Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/licindia/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:45.423Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:57.652Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:57.652Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Life Insurance policies issued by Max Life Insurance on or after April 1st,2008 are available to be pulled in citizen's DigiLocker account.\">Life Insurance policies issued by Max<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Max Life Insurance Co. Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410612, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["maxlifeinsurance"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14087], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14079, 14080, 14081, 14082, 14083, 14084, 14085, 14086, 14088], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Life Insurance policies issued by Max Life Insurance on or after April 1st,2008 are available to be pulled in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Max Life Insurance Co. Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: maxlifeinsurance\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Life Insurance <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:13:57.652Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14078, 14089, 14090, 14091, 14092, 14093], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:57.652Z\ninfo: { description:Life Insurance policies issued by Max Life Insurance on or after April 1st,2008 are available to be pulled in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Max Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/maxlifeinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:maxlifeinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:13:57.652Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:57.652Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14094], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:13:57.652Z, info:{ description:Life Insurance policies issued by Max Life Insurance on or after April 1st,2008 are available to be pulled in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Max Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/maxlifeinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:maxlifeinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:57.652Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:maxlifeinsurance: DataRow\">apisetu.gov.in:maxlifeinsurance</span>", children: [14076, 14077, 14095], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:13:57.652Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:13:57.652Z, info:{ description:Life Insurance policies issued by Max Life Insurance on or after April 1st,2008 are available to be pulled in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Max Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/maxlifeinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:maxlifeinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:13:57.652Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/maxlifeinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:13:57.652Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:03.379Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:03.379Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Meghalaya Board of School Education (MBOSE) with Marksheets of Class Xth and Class XIIth (Arts , Science, Commerce and Vocational), is availablke on DigiLocker for the students of 2015-2019.\">Meghalaya Board of School Education (<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Meghalaya Board of School Education, Tura, Meghalaya\">Meghalaya Board of School Education, <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410613, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mbose"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14108], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14100, 14101, 14102, 14103, 14104, 14105, 14106, 14107, 14109], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Meghalaya Board of School Education (MBOSE) with Marksheets of Class Xth and Class XIIth (Arts , Science, Commerce and Vocational), is availablke on DigiLocker for the students of 2015-2019.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Meghalaya Board of School Education, Tura, Meghalaya\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mbose\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Meghalaya Board<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:03.379Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14099, 14110, 14111, 14112, 14113, 14114], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:03.379Z\ninfo: { description:Meghalaya Board of School Education (MBOSE) with Marksheets of Class Xth and Class XIIth (Arts , Science, Commerce and Vocational), is availablke on DigiLocker for the students of 2015-2019., termsOfService:https://apisetu.gov.in/terms.php, title:Meghalaya Board of School Education, Tura, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:03.379Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:03.379Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14115], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:03.379Z, info:{ description:Meghalaya Board of School Education (MBOSE) with Marksheets of Class Xth and Class XIIth (Arts , Science, Commerce and Vocational), is availablke on DigiLocker for the students of 2015-2019., termsOfService:https://apisetu.gov.in/terms.php, title:Meghalaya Board of School Education, Tura, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:03.379Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mbose: DataRow\">apisetu.gov.in:mbose</span>", children: [14097, 14098, 14116], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:03.379Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:03.379Z, info:{ description:Meghalaya Board of School Education (MBOSE) with Marksheets of Class Xth and Class XIIth (Arts , Science, Commerce and Vocational), is availablke on DigiLocker for the students of 2015-2019., termsOfService:https://apisetu.gov.in/terms.php, title:Meghalaya Board of School Education, Tura, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbose.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbose, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:03.379Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbose/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:03.379Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:08.964Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:08.964Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Mizoram Board of School Education, Mizoram (http://www.mbse.edu.in) has made available 2018 Class X and class XII marksheets and passing certificates in DigiLocker, which can be pulled by students into their accounts.\">Mizoram Board of School Education, Mi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Mizoram State Board of School education"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410614, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mbse"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14129], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14121, 14122, 14123, 14124, 14125, 14126, 14127, 14128, 14130], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Mizoram Board of School Education, Mizoram (http://www.mbse.edu.in) has made available 2018 Class X and class XII marksheets and passing certificates in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Mizoram State Board of School education\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mbse\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Mizoram Board o<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:08.964Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14120, 14131, 14132, 14133, 14134, 14135], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:08.964Z\ninfo: { description:Mizoram Board of School Education, Mizoram (http://www.mbse.edu.in) has made available 2018 Class X and class XII marksheets and passing certificates in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram State Board of School education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:08.964Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:08.964Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14136], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:08.964Z, info:{ description:Mizoram Board of School Education, Mizoram (http://www.mbse.edu.in) has made available 2018 Class X and class XII marksheets and passing certificates in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram State Board of School education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:08.964Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mbse: DataRow\">apisetu.gov.in:mbse</span>", children: [14118, 14119, 14137], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:08.964Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:08.964Z, info:{ description:Mizoram Board of School Education, Mizoram (http://www.mbse.edu.in) has made available 2018 Class X and class XII marksheets and passing certificates in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram State Board of School education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:08.964Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mbse/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:08.964Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:14.441Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:14.441Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Maharashtra Council of Indian Medicine.\">APIs provided by Maharashtra Council <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Maharashtra Council of Indian Medicine"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410615, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mcimindia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14150], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14142, 14143, 14144, 14145, 14146, 14147, 14148, 14149, 14151], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Maharashtra Council of Indian Medicine.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Maharashtra Council of Indian Medicine\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mcimindia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:14.441Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14141, 14152, 14153, 14154, 14155, 14156], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:14.441Z\ninfo: { description:APIs provided by Maharashtra Council of Indian Medicine., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra Council of Indian Medicine, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mcimindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mcimindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:14.441Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:14.441Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14157], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:14.441Z, info:{ description:APIs provided by Maharashtra Council of Indian Medicine., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra Council of Indian Medicine, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mcimindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mcimindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:14.441Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mcimindia: DataRow\">apisetu.gov.in:mcimindia</span>", children: [14139, 14140, 14158], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:14.441Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:14.441Z, info:{ description:APIs provided by Maharashtra Council of Indian Medicine., termsOfService:https://apisetu.gov.in/terms.php, title:Maharashtra Council of Indian Medicine, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mcimindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mcimindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:14.441Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mcimindia/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:14.441Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:19.929Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:19.929Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"A single consolidated system of MEARK has been integrated with DigiLocker to produce Co-curricular activity Awards for Universities and Academic Institutions of India. Initially starting with all the Universities of Maharashtra.\">A single consolidated system of MEARK<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Meark Enterprise Pvt. Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410616, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["meark"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14171], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14163, 14164, 14165, 14166, 14167, 14168, 14169, 14170, 14172], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: A single consolidated system of MEARK has been integrated with DigiLocker to produce Co-curricular activity Awards for Universities and Academic Institutions of India. Initially starting with all the Universities of Maharashtra.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Meark Enterprise Pvt. Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: meark\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>A single consol<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:19.929Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14162, 14173, 14174, 14175, 14176, 14177], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:19.929Z\ninfo: { description:A single consolidated system of MEARK has been integrated with DigiLocker to produce Co-curricular activity Awards for Universities and Academic Institutions of India. Initially starting with all the Universities of Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Meark Enterprise Pvt. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/meark.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:meark, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:19.929Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:19.929Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14178], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:19.929Z, info:{ description:A single consolidated system of MEARK has been integrated with DigiLocker to produce Co-curricular activity Awards for Universities and Academic Institutions of India. Initially starting with all the Universities of Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Meark Enterprise Pvt. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/meark.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:meark, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:19.929Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:meark: DataRow\">apisetu.gov.in:meark</span>", children: [14160, 14161, 14179], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:19.929Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:19.929Z, info:{ description:A single consolidated system of MEARK has been integrated with DigiLocker to produce Co-curricular activity Awards for Universities and Academic Institutions of India. Initially starting with all the Universities of Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Meark Enterprise Pvt. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/meark.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:meark, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:19.929Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/meark/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:19.929Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:43.263Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:43.263Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Labour Employment, Skill Development and Entrepreneurship, Mizoram.\">APIs provided by Labour Employment, S<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Labour Employment, Skill Development and Entrepreneurship, Mizoram\">Labour Employment, Skill Development <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410617, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mizoramlesde"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14192], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14184, 14185, 14186, 14187, 14188, 14189, 14190, 14191, 14193], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Labour Employment, Skill Development and Entrepreneurship, Mizoram.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Labour Employment, Skill Development and Entrepreneurship, Mizoram\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mizoramlesde\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:43.263Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14183, 14194, 14195, 14196, 14197, 14198], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:43.263Z\ninfo: { description:APIs provided by Labour Employment, Skill Development and Entrepreneurship, Mizoram., termsOfService:https://apisetu.gov.in/terms.php, title:Labour Employment, Skill Development and Entrepreneurship, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizoramlesde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizoramlesde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:43.263Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:43.263Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14199], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:43.263Z, info:{ description:APIs provided by Labour Employment, Skill Development and Entrepreneurship, Mizoram., termsOfService:https://apisetu.gov.in/terms.php, title:Labour Employment, Skill Development and Entrepreneurship, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizoramlesde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizoramlesde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:43.263Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mizoramlesde: DataRow\">apisetu.gov.in:mizoramlesde</span>", children: [14181, 14182, 14200], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:43.263Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:43.263Z, info:{ description:APIs provided by Labour Employment, Skill Development and Entrepreneurship, Mizoram., termsOfService:https://apisetu.gov.in/terms.php, title:Labour Employment, Skill Development and Entrepreneurship, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizoramlesde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizoramlesde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:43.263Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizoramlesde/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:43.263Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:49.130Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:49.130Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Identification cards, as issued by Mizoram Police to its personnels, can be downloaded by them in their DigiLocker accounts\">Identification cards, as issued by Mi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Mizoram Police, Mizoram"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410618, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mizorampolice"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14213], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14205, 14206, 14207, 14208, 14209, 14210, 14211, 14212, 14214], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Identification cards, as issued by Mizoram Police to its personnels, can be downloaded by them in their DigiLocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Mizoram Police, Mizoram\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mizorampolice\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Identification <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:14:49.130Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14204, 14215, 14216, 14217, 14218, 14219], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:49.130Z\ninfo: { description:Identification cards, as issued by Mizoram Police to its personnels, can be downloaded by them in their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram Police, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizorampolice.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizorampolice, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:14:49.130Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:49.130Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14220], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:14:49.130Z, info:{ description:Identification cards, as issued by Mizoram Police to its personnels, can be downloaded by them in their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram Police, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizorampolice.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizorampolice, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:49.130Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mizorampolice: DataRow\">apisetu.gov.in:mizorampolice</span>", children: [14202, 14203, 14221], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:14:49.130Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:14:49.130Z, info:{ description:Identification cards, as issued by Mizoram Police to its personnels, can be downloaded by them in their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Mizoram Police, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mizorampolice.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mizorampolice, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:14:49.130Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mizorampolice/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:14:49.130Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:01.014Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:01.014Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Migration certificate issued from 2018 onward can now be fetched by Citizens in their DigiLocker account.\">Migration certificate issued from 201<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Madhya Pradesh Medical Science University, Jabalpur M.P., Madhya Pradesh\">Madhya Pradesh Medical Science Univer<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410619, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mpmsu"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14234], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14226, 14227, 14228, 14229, 14230, 14231, 14232, 14233, 14235], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Migration certificate issued from 2018 onward can now be fetched by Citizens in their DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Madhya Pradesh Medical Science University, Jabalpur M.P., Madhya Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mpmsu\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Migration certi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:01.014Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14225, 14236, 14237, 14238, 14239, 14240], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:01.014Z\ninfo: { description:Migration certificate issued from 2018 onward can now be fetched by Citizens in their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Madhya Pradesh Medical Science University, Jabalpur M.P., Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mpmsu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mpmsu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:01.014Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:01.014Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14241], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:01.014Z, info:{ description:Migration certificate issued from 2018 onward can now be fetched by Citizens in their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Madhya Pradesh Medical Science University, Jabalpur M.P., Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mpmsu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mpmsu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:01.014Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mpmsu: DataRow\">apisetu.gov.in:mpmsu</span>", children: [14223, 14224, 14242], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:01.014Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:01.014Z, info:{ description:Migration certificate issued from 2018 onward can now be fetched by Citizens in their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Madhya Pradesh Medical Science University, Jabalpur M.P., Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mpmsu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mpmsu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:01.014Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mpmsu/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:01.014Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:07.157Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:07.157Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Registration Certificate, Duplicate Registration Certificate, Good Standing Certificate, Registration Renewal, Tatkal Registration, Tatkal Registration Renewal and Upadhi/Certificate as issued by MP Paramedical Council (http://www.mppmc.ac.in) from April 2017 onwards can be pulled into citizens' DigiLocker accounts.\">Registration Certificate, Duplicate R<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Paramedical Council, Madhya Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410620, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mppmc"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14255], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14247, 14248, 14249, 14250, 14251, 14252, 14253, 14254, 14256], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Registration Certificate, Duplicate Registration Certificate, Good Standing Certificate, Registration Renewal, Tatkal Registration, Tatkal Registration Renewal and Upadhi/Certificate as issued by MP Paramedical Council (http://www.mppmc.ac.in) from April 2017 onwards can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Paramedical Council, Madhya Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mppmc\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Registration Ce<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:07.157Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14246, 14257, 14258, 14259, 14260, 14261], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:07.157Z\ninfo: { description:Registration Certificate, Duplicate Registration Certificate, Good Standing Certificate, Registration Renewal, Tatkal Registration, Tatkal Registration Renewal and Upadhi/Certificate as issued by MP Paramedical Council (http://www.mppmc.ac.in) from April 2017 onwards can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Paramedical Council, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mppmc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mppmc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:07.157Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:07.157Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14262], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:07.157Z, info:{ description:Registration Certificate, Duplicate Registration Certificate, Good Standing Certificate, Registration Renewal, Tatkal Registration, Tatkal Registration Renewal and Upadhi/Certificate as issued by MP Paramedical Council (http://www.mppmc.ac.in) from April 2017 onwards can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Paramedical Council, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mppmc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mppmc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:07.157Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mppmc: DataRow\">apisetu.gov.in:mppmc</span>", children: [14244, 14245, 14263], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:07.157Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:07.157Z, info:{ description:Registration Certificate, Duplicate Registration Certificate, Good Standing Certificate, Registration Renewal, Tatkal Registration, Tatkal Registration Renewal and Upadhi/Certificate as issued by MP Paramedical Council (http://www.mppmc.ac.in) from April 2017 onwards can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Paramedical Council, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mppmc.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mppmc, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:07.157Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mppmc/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:07.157Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:13.359Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:13.359Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Manav Rachna International Institute of Research & Studies, Faridabad (http://manavrachna.edu.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Manav Rachna International Institute of Research & Studies.\">Manav Rachna International Institute <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Manav Rachna International Institute of Research & Studies\">Manav Rachna International Institute <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410621, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["mriu"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14276], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14268, 14269, 14270, 14271, 14272, 14273, 14274, 14275, 14277], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Manav Rachna International Institute of Research & Studies, Faridabad (http://manavrachna.edu.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Manav Rachna International Institute of Research & Studies.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Manav Rachna International Institute of Research & Studies\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: mriu\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Manav Rachna In<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:13.359Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14267, 14278, 14279, 14280, 14281, 14282], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:13.359Z\ninfo: { description:Manav Rachna International Institute of Research & Studies, Faridabad (http://manavrachna.edu.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Manav Rachna International Institute of Research & Studies., termsOfService:https://apisetu.gov.in/terms.php, title:Manav Rachna International Institute of Research & Studies, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mriu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mriu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:13.359Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:13.359Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14283], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:13.359Z, info:{ description:Manav Rachna International Institute of Research & Studies, Faridabad (http://manavrachna.edu.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Manav Rachna International Institute of Research & Studies., termsOfService:https://apisetu.gov.in/terms.php, title:Manav Rachna International Institute of Research & Studies, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mriu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mriu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:13.359Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:mriu: DataRow\">apisetu.gov.in:mriu</span>", children: [14265, 14266, 14284], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:13.359Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:13.359Z, info:{ description:Manav Rachna International Institute of Research & Studies, Faridabad (http://manavrachna.edu.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 is made available by Manav Rachna International Institute of Research & Studies., termsOfService:https://apisetu.gov.in/terms.php, title:Manav Rachna International Institute of Research & Studies, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/mriu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:mriu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:13.359Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/mriu/3.0.0/openap... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:13.359Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:19.009Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:19.009Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Council for Vocational Training (NCVT) under Ministry of Skill Development And Entrepreneurship has been entrusted with the responsibilities of prescribing standards and curricula for craftsmen training and conducting All India Trade Tests and awarding National Trade Certificates. All the ITI certificates under the purview of NCVT are available to download through Citizen's DigiLocker account.\">National Council for Vocational Train<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Ministry of Skill Development And Entrepreneurship\">Ministry of Skill Development And Ent<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410622, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["msde"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14297], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14289, 14290, 14291, 14292, 14293, 14294, 14295, 14296, 14298], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: National Council for Vocational Training (NCVT) under Ministry of Skill Development And Entrepreneurship has been entrusted with the responsibilities of prescribing standards and curricula for craftsmen training and conducting All India Trade Tests and awarding National Trade Certificates. All the ITI certificates under the purview of NCVT are available to download through Citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Ministry of Skill Development And Entrepreneurship\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: msde\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>National Counci<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:19.009Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14288, 14299, 14300, 14301, 14302, 14303], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:19.009Z\ninfo: { description:National Council for Vocational Training (NCVT) under Ministry of Skill Development And Entrepreneurship has been entrusted with the responsibilities of prescribing standards and curricula for craftsmen training and conducting All India Trade Tests and awarding National Trade Certificates. All the ITI certificates under the purview of NCVT are available to download through Citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Skill Development And Entrepreneurship, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/msde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:msde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:19.009Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:19.009Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14304], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:19.009Z, info:{ description:National Council for Vocational Training (NCVT) under Ministry of Skill Development And Entrepreneurship has been entrusted with the responsibilities of prescribing standards and curricula for craftsmen training and conducting All India Trade Tests and awarding National Trade Certificates. All the ITI certificates under the purview of NCVT are available to download through Citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Skill Development And Entrepreneurship, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/msde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:msde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:19.009Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:msde: DataRow\">apisetu.gov.in:msde</span>", children: [14286, 14287, 14305], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:19.009Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:19.009Z, info:{ description:National Council for Vocational Training (NCVT) under Ministry of Skill Development And Entrepreneurship has been entrusted with the responsibilities of prescribing standards and curricula for craftsmen training and conducting All India Trade Tests and awarding National Trade Certificates. All the ITI certificates under the purview of NCVT are available to download through Citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Skill Development And Entrepreneurship, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/msde.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:msde, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:19.009Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/msde/3.0.0/openapi.json, swaggerY... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:19.009Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:25.842Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:25.842Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Directorate of Municipal Administration, Karnataka.\">APIs provided by Directorate of Munic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Directorate of Municipal Administration, Karnataka\">Directorate of Municipal Administrati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410623, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["municipaladmin"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14318], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14310, 14311, 14312, 14313, 14314, 14315, 14316, 14317, 14319], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Directorate of Municipal Administration, Karnataka.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Directorate of Municipal Administration, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: municipaladmin\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:25.842Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14309, 14320, 14321, 14322, 14323, 14324], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:25.842Z\ninfo: { description:APIs provided by Directorate of Municipal Administration, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Municipal Administration, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/municipaladmin.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:municipaladmin, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:25.842Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:25.842Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14325], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:25.842Z, info:{ description:APIs provided by Directorate of Municipal Administration, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Municipal Administration, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/municipaladmin.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:municipaladmin, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:25.842Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:municipaladmin: DataRow\">apisetu.gov.in:municipaladmin</span>", children: [14307, 14308, 14326], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:25.842Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:25.842Z, info:{ description:APIs provided by Directorate of Municipal Administration, Karnataka., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Municipal Administration, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/municipaladmin.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:municipaladmin, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:25.842Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/municipaladmin/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:25.842Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:31.464Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:31.464Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by National Insurance Company Ltd..\">APIs provided by National Insurance C<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["National Insurance Company Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410624, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nationalinsurance"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14339], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14331, 14332, 14333, 14334, 14335, 14336, 14337, 14338, 14340], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by National Insurance Company Ltd..\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Insurance Company Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: nationalinsurance\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:31.464Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14330, 14341, 14342, 14343, 14344, 14345], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:31.464Z\ninfo: { description:APIs provided by National Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:National Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nationalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nationalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:31.464Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:31.464Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14346], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:31.464Z, info:{ description:APIs provided by National Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:National Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nationalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nationalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:31.464Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:nationalinsurance: DataRow\">apisetu.gov.in:nationalinsurance</span>", children: [14328, 14329, 14347], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:31.464Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:31.464Z, info:{ description:APIs provided by National Insurance Company Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:National Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nationalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nationalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:31.464Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nationalinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:31.464Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:44.002Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:44.002Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Certificates for Class X National Talent Search Examination as Issued by NCERT can be downloaded in citizen's DigiLocker account.\">Certificates for Class X National Tal<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["NCERT"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410625, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ncert"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14360], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14352, 14353, 14354, 14355, 14356, 14357, 14358, 14359, 14361], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Certificates for Class X National Talent Search Examination as Issued by NCERT can be downloaded in citizen's DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: NCERT\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ncert\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Certificates fo<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:15:44.002Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14351, 14362, 14363, 14364, 14365, 14366], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:44.002Z\ninfo: { description:Certificates for Class X National Talent Search Examination as Issued by NCERT can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NCERT, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ncert.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ncert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:15:44.002Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:44.002Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14367], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:15:44.002Z, info:{ description:Certificates for Class X National Talent Search Examination as Issued by NCERT can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NCERT, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ncert.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ncert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:44.002Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ncert: DataRow\">apisetu.gov.in:ncert</span>", children: [14349, 14350, 14368], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:15:44.002Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:15:44.002Z, info:{ description:Certificates for Class X National Talent Search Examination as Issued by NCERT can be downloaded in citizen's DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NCERT, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ncert.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ncert, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:15:44.002Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ncert/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:15:44.002Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:46.606Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:46.606Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"NeGD (http://negd.gov.in/) conducts trainings in the area of egovernance. Certificates for certain training programmes by NeGD are made available in participants' DigiLocker accounts.\">NeGD (http://negd.gov.in/) conducts t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["National e-Governance Division"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410626, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["negd"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14381], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14373, 14374, 14375, 14376, 14377, 14378, 14379, 14380, 14382], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: NeGD (http://negd.gov.in/) conducts trainings in the area of egovernance. Certificates for certain training programmes by NeGD are made available in participants' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National e-Governance Division\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: negd\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>NeGD (http://ne<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:46.606Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14372, 14383, 14384, 14385, 14386, 14387], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:46.606Z\ninfo: { description:NeGD (http://negd.gov.in/) conducts trainings in the area of egovernance. Certificates for certain training programmes by NeGD are made available in participants' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National e-Governance Division, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/negd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:negd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:16:46.606Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:46.606Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14388], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:16:46.606Z, info:{ description:NeGD (http://negd.gov.in/) conducts trainings in the area of egovernance. Certificates for certain training programmes by NeGD are made available in participants' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National e-Governance Division, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/negd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:negd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:46.606Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:negd: DataRow\">apisetu.gov.in:negd</span>", children: [14370, 14371, 14389], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:46.606Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:16:46.606Z, info:{ description:NeGD (http://negd.gov.in/) conducts trainings in the area of egovernance. Certificates for certain training programmes by NeGD are made available in participants' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National e-Governance Division, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/negd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:negd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:46.606Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/negd/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:46.606Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:52.608Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:52.608Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"NIELIT, under Ministry of Electronics & IT (http://www.nielit.gov.in/) provides education and training in the area of Information, Electronics & Communication Technology. Certificates issued by NIELIT are made available in students' DigiLocker accounts.\">NIELIT, under Ministry of Electronics<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Institute of Electronics and Information Technology\">National Institute of Electronics and<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410627, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["neilit"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14402], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14394, 14395, 14396, 14397, 14398, 14399, 14400, 14401, 14403], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: NIELIT, under Ministry of Electronics & IT (http://www.nielit.gov.in/) provides education and training in the area of Information, Electronics & Communication Technology. Certificates issued by NIELIT are made available in students' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Institute of Electronics and Information Technology\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: neilit\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>NIELIT, under M<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:52.608Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14393, 14404, 14405, 14406, 14407, 14408], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:52.608Z\ninfo: { description:NIELIT, under Ministry of Electronics & IT (http://www.nielit.gov.in/) provides education and training in the area of Information, Electronics & Communication Technology. Certificates issued by NIELIT are made available in students' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Electronics and Information Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/neilit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:neilit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:16:52.608Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:52.608Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14409], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:16:52.608Z, info:{ description:NIELIT, under Ministry of Electronics & IT (http://www.nielit.gov.in/) provides education and training in the area of Information, Electronics & Communication Technology. Certificates issued by NIELIT are made available in students' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Electronics and Information Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/neilit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:neilit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:52.608Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:neilit: DataRow\">apisetu.gov.in:neilit</span>", children: [14391, 14392, 14410], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:52.608Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:16:52.608Z, info:{ description:NIELIT, under Ministry of Electronics & IT (http://www.nielit.gov.in/) provides education and training in the area of Information, Electronics & Communication Technology. Certificates issued by NIELIT are made available in students' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Electronics and Information Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/neilit.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:neilit, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:52.608Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/neilit/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:52.608Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:58.202Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:58.202Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"General Insurance policies such as Motor, Health, Travel, Rural, Marine e.t.c issued by The New India Assurance Co. Ltd. are available to be pulled for citizens of India.\">General Insurance policies such as Mo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["New India Assurance Co. Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410628, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["newindia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14423], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14415, 14416, 14417, 14418, 14419, 14420, 14421, 14422, 14424], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: General Insurance policies such as Motor, Health, Travel, Rural, Marine e.t.c issued by The New India Assurance Co. Ltd. are available to be pulled for citizens of India.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: New India Assurance Co. Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: newindia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>General Insuran<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:16:58.202Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14414, 14425, 14426, 14427, 14428, 14429], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:58.202Z\ninfo: { description:General Insurance policies such as Motor, Health, Travel, Rural, Marine e.t.c issued by The New India Assurance Co. Ltd. are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:New India Assurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/newindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:newindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:16:58.202Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:58.202Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14430], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:16:58.202Z, info:{ description:General Insurance policies such as Motor, Health, Travel, Rural, Marine e.t.c issued by The New India Assurance Co. Ltd. are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:New India Assurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/newindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:newindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:58.202Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:newindia: DataRow\">apisetu.gov.in:newindia</span>", children: [14412, 14413, 14431], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:16:58.202Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:16:58.202Z, info:{ description:General Insurance policies such as Motor, Health, Travel, Rural, Marine e.t.c issued by The New India Assurance Co. Ltd. are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:New India Assurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/newindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:newindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:16:58.202Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/newindia/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:16:58.202Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:04.192Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:04.192Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Training certificates as issued by NIESBUD can be downloaded by Citizen in his/her DigiLocker account.\">Training certificates as issued by NI<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["NIESBUD"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410629, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["niesbud"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14444], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14436, 14437, 14438, 14439, 14440, 14441, 14442, 14443, 14445], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Training certificates as issued by NIESBUD can be downloaded by Citizen in his/her DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: NIESBUD\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: niesbud\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Training certif<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:04.192Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14435, 14446, 14447, 14448, 14449, 14450], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:04.192Z\ninfo: { description:Training certificates as issued by NIESBUD can be downloaded by Citizen in his/her DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NIESBUD, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/niesbud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:niesbud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:04.192Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:04.192Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14451], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:04.192Z, info:{ description:Training certificates as issued by NIESBUD can be downloaded by Citizen in his/her DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NIESBUD, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/niesbud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:niesbud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:04.192Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:niesbud: DataRow\">apisetu.gov.in:niesbud</span>", children: [14433, 14434, 14452], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:04.192Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:04.192Z, info:{ description:Training certificates as issued by NIESBUD can be downloaded by Citizen in his/her DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:NIESBUD, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/niesbud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:niesbud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:04.192Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/niesbud/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:04.192Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:09.827Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:09.827Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Institute of Open Schooling (NIOS) is issuing marksheets, Provisional certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2010 - 2020 [Class XII & Class Xth]\">National Institute of Open Schooling <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["National Institute of Open Schooling"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410630, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nios"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14465], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14457, 14458, 14459, 14460, 14461, 14462, 14463, 14464, 14466], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: National Institute of Open Schooling (NIOS) is issuing marksheets, Provisional certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2010 - 2020 [Class XII & Class Xth]\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Institute of Open Schooling\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: nios\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>National Instit<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:09.827Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14456, 14467, 14468, 14469, 14470, 14471], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:09.827Z\ninfo: { description:National Institute of Open Schooling (NIOS) is issuing marksheets, Provisional certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2010 - 2020 [Class XII & Class Xth], termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Open Schooling, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nios.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nios, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:09.827Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:09.827Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14472], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:09.827Z, info:{ description:National Institute of Open Schooling (NIOS) is issuing marksheets, Provisional certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2010 - 2020 [Class XII & Class Xth], termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Open Schooling, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nios.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nios, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:09.827Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:nios: DataRow\">apisetu.gov.in:nios</span>", children: [14454, 14455, 14473], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:09.827Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:09.827Z, info:{ description:National Institute of Open Schooling (NIOS) is issuing marksheets, Provisional certificates, migration certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently available - 2010 - 2020 [Class XII & Class Xth], termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Open Schooling, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nios.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nios, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:09.827Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nios/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:09.827Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:15.876Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:15.876Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Institute Of Technology, Arunachal Pradesh (http://www.nitap.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts.\">National Institute Of Technology, Aru<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Institute Of Technology Arunachal Pradesh\">National Institute Of Technology Arun<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410631, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nitap"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14486], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14478, 14479, 14480, 14481, 14482, 14483, 14484, 14485, 14487], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: National Institute Of Technology, Arunachal Pradesh (http://www.nitap.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Institute Of Technology Arunachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: nitap\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>National Instit<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:15.876Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14477, 14488, 14489, 14490, 14491, 14492], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:15.876Z\ninfo: { description:National Institute Of Technology, Arunachal Pradesh (http://www.nitap.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute Of Technology Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:15.876Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:15.876Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14493], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:15.876Z, info:{ description:National Institute Of Technology, Arunachal Pradesh (http://www.nitap.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute Of Technology Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:15.876Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:nitap: DataRow\">apisetu.gov.in:nitap</span>", children: [14475, 14476, 14494], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:15.876Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:15.876Z, info:{ description:National Institute Of Technology, Arunachal Pradesh (http://www.nitap.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute Of Technology Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:15.876Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitap/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:15.876Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:21.664Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:21.664Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Institute of Technology, Patna (http://www.nitp.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 and 2020 is made available by National Institute of Technology.\">National Institute of Technology, Pat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["National Institute of Technology, Patna"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410632, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nitp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14507], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14499, 14500, 14501, 14502, 14503, 14504, 14505, 14506, 14508], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: National Institute of Technology, Patna (http://www.nitp.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 and 2020 is made available by National Institute of Technology.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Institute of Technology, Patna\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: nitp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>National Instit<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:21.664Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14498, 14509, 14510, 14511, 14512, 14513], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:21.664Z\ninfo: { description:National Institute of Technology, Patna (http://www.nitp.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 and 2020 is made available by National Institute of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Technology, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:21.664Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:21.664Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14514], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:21.664Z, info:{ description:National Institute of Technology, Patna (http://www.nitp.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 and 2020 is made available by National Institute of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Technology, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:21.664Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:nitp: DataRow\">apisetu.gov.in:nitp</span>", children: [14496, 14497, 14515], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:21.664Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:21.664Z, info:{ description:National Institute of Technology, Patna (http://www.nitp.ac.in/) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year 2019 and 2020 is made available by National Institute of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:National Institute of Technology, Patna, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nitp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nitp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:21.664Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nitp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:21.664Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:27.593Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:27.593Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Sailu Municipal Council, Maharashtra.\">APIs provided by Sailu Municipal Coun<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Sailu Municipal Council, Maharashtra"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410633, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["npsailu"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14528], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14520, 14521, 14522, 14523, 14524, 14525, 14526, 14527, 14529], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Sailu Municipal Council, Maharashtra.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Sailu Municipal Council, Maharashtra\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: npsailu\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:27.593Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14519, 14530, 14531, 14532, 14533, 14534], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:27.593Z\ninfo: { description:APIs provided by Sailu Municipal Council, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Sailu Municipal Council, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/npsailu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:npsailu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:27.593Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:27.593Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14535], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:27.593Z, info:{ description:APIs provided by Sailu Municipal Council, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Sailu Municipal Council, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/npsailu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:npsailu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:27.593Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:npsailu: DataRow\">apisetu.gov.in:npsailu</span>", children: [14517, 14518, 14536], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:27.593Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:27.593Z, info:{ description:APIs provided by Sailu Municipal Council, Maharashtra., termsOfService:https://apisetu.gov.in/terms.php, title:Sailu Municipal Council, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/npsailu.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:npsailu, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:27.593Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/npsailu/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:27.593Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:33.495Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:33.495Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"NSDC (https://www.nsdcindia.org) promotes skill development by catalyzing creation of large, quality and for-profit vocational institutions. Skill certificates provided under various NSDC programmes are made available to citizens in their DigiLocker accounts.\">NSDC (https://www.nsdcindia.org) prom<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"National Skill Development Corporation (NSDC)\">National Skill Development Corporatio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410634, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["nsdcindia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14549], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14541, 14542, 14543, 14544, 14545, 14546, 14547, 14548, 14550], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: NSDC (https://www.nsdcindia.org) promotes skill development by catalyzing creation of large, quality and for-profit vocational institutions. Skill certificates provided under various NSDC programmes are made available to citizens in their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Skill Development Corporation (NSDC)\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: nsdcindia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>NSDC (https://w<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:33.495Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14540, 14551, 14552, 14553, 14554, 14555], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:33.495Z\ninfo: { description:NSDC (https://www.nsdcindia.org) promotes skill development by catalyzing creation of large, quality and for-profit vocational institutions. Skill certificates provided under various NSDC programmes are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Skill Development Corporation (NSDC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nsdcindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nsdcindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:33.495Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:33.495Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14556], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:33.495Z, info:{ description:NSDC (https://www.nsdcindia.org) promotes skill development by catalyzing creation of large, quality and for-profit vocational institutions. Skill certificates provided under various NSDC programmes are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Skill Development Corporation (NSDC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nsdcindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nsdcindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:33.495Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:nsdcindia: DataRow\">apisetu.gov.in:nsdcindia</span>", children: [14538, 14539, 14557], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:33.495Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:33.495Z, info:{ description:NSDC (https://www.nsdcindia.org) promotes skill development by catalyzing creation of large, quality and for-profit vocational institutions. Skill certificates provided under various NSDC programmes are made available to citizens in their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:National Skill Development Corporation (NSDC), version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/nsdcindia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:nsdcindia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:33.495Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/nsdcindia/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:33.495Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:45.908Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:45.908Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"General Insurance policies such as Motor, Health, Travel, Property, Engineering e.t.c issued by The Oriental Insurance are available to be pulled for citizens of India.\">General Insurance policies such as Mo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["The Oriental Insurance Co. Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410635, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["orientalinsurance"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14570], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14562, 14563, 14564, 14565, 14566, 14567, 14568, 14569, 14571], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: General Insurance policies such as Motor, Health, Travel, Property, Engineering e.t.c issued by The Oriental Insurance are available to be pulled for citizens of India.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: The Oriental Insurance Co. Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: orientalinsurance\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>General Insuran<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:45.908Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14561, 14572, 14573, 14574, 14575, 14576], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:45.908Z\ninfo: { description:General Insurance policies such as Motor, Health, Travel, Property, Engineering e.t.c issued by The Oriental Insurance are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:The Oriental Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/orientalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:orientalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:45.908Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:45.908Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14577], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:45.908Z, info:{ description:General Insurance policies such as Motor, Health, Travel, Property, Engineering e.t.c issued by The Oriental Insurance are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:The Oriental Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/orientalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:orientalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:45.908Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:orientalinsurance: DataRow\">apisetu.gov.in:orientalinsurance</span>", children: [14559, 14560, 14578], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:45.908Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:45.908Z, info:{ description:General Insurance policies such as Motor, Health, Travel, Property, Engineering e.t.c issued by The Oriental Insurance are available to be pulled for citizens of India., termsOfService:https://apisetu.gov.in/terms.php, title:The Oriental Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/orientalinsurance.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:orientalinsurance, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:45.908Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/orientalinsurance/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:45.908Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:52.191Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:52.191Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Income Tax Department, Govt of India has provided PAN Verification Records to Indian citizens via DigiLocker. You can verify the correctness of your PAN data in real-time using this facility.\">Income Tax Department, Govt of India <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Income Tax Department"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410636, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pan"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14591], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14583, 14584, 14585, 14586, 14587, 14588, 14589, 14590, 14592], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Income Tax Department, Govt of India has provided PAN Verification Records to Indian citizens via DigiLocker. You can verify the correctness of your PAN data in real-time using this facility.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Income Tax Department\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pan\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Income Tax Depa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:52.191Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14582, 14593, 14594, 14595, 14596, 14597], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:52.191Z\ninfo: { description:Income Tax Department, Govt of India has provided PAN Verification Records to Indian citizens via DigiLocker. You can verify the correctness of your PAN data in real-time using this facility., termsOfService:https://apisetu.gov.in/terms.php, title:Income Tax Department, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:52.191Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:52.191Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14598], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:52.191Z, info:{ description:Income Tax Department, Govt of India has provided PAN Verification Records to Indian citizens via DigiLocker. You can verify the correctness of your PAN data in real-time using this facility., termsOfService:https://apisetu.gov.in/terms.php, title:Income Tax Department, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:52.191Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pan: DataRow\">apisetu.gov.in:pan</span>", children: [14580, 14581, 14599], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:52.191Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:52.191Z, info:{ description:Income Tax Department, Govt of India has provided PAN Verification Records to Indian citizens via DigiLocker. You can verify the correctness of your PAN data in real-time using this facility., termsOfService:https://apisetu.gov.in/terms.php, title:Income Tax Department, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:52.191Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pan/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:52.191Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:58.793Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:58.793Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Kerala State Board of Public Examinations, Kerala.\">APIs provided by Kerala State Board o<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Kerala State Board of Public Examinations, Kerala\">Kerala State Board of Public Examinat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410637, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pareekshabhavanker"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14612], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14604, 14605, 14606, 14607, 14608, 14609, 14610, 14611, 14613], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Kerala State Board of Public Examinations, Kerala.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Kerala State Board of Public Examinations, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pareekshabhavanker\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:17:58.793Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14603, 14614, 14615, 14616, 14617, 14618], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:58.793Z\ninfo: { description:APIs provided by Kerala State Board of Public Examinations, Kerala., termsOfService:https://apisetu.gov.in/terms.php, title:Kerala State Board of Public Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pareekshabhavanker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pareekshabhavanker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:17:58.793Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:58.793Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14619], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:17:58.793Z, info:{ description:APIs provided by Kerala State Board of Public Examinations, Kerala., termsOfService:https://apisetu.gov.in/terms.php, title:Kerala State Board of Public Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pareekshabhavanker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pareekshabhavanker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:58.793Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pareekshabhavanker: DataRow\">apisetu.gov.in:pareekshabhavanker</span>", children: [14601, 14602, 14620], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:17:58.793Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:17:58.793Z, info:{ description:APIs provided by Kerala State Board of Public Examinations, Kerala., termsOfService:https://apisetu.gov.in/terms.php, title:Kerala State Board of Public Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pareekshabhavanker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pareekshabhavanker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:17:58.793Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pareekshabhavanker/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:17:58.793Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:04.177Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:04.177Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Department of Labour, Govt of Punjab, Punjab.\">APIs provided by Department of Labour<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Labour, Govt of Punjab, Punjab\">Department of Labour, Govt of Punjab,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410638, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pblabour"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14633], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14625, 14626, 14627, 14628, 14629, 14630, 14631, 14632, 14634], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Department of Labour, Govt of Punjab, Punjab.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Labour, Govt of Punjab, Punjab\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pblabour\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:04.177Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14624, 14635, 14636, 14637, 14638, 14639], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:04.177Z\ninfo: { description:APIs provided by Department of Labour, Govt of Punjab, Punjab., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Labour, Govt of Punjab, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pblabour.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pblabour, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:04.177Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:04.177Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14640], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:04.177Z, info:{ description:APIs provided by Department of Labour, Govt of Punjab, Punjab., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Labour, Govt of Punjab, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pblabour.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pblabour, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:04.177Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pblabour: DataRow\">apisetu.gov.in:pblabour</span>", children: [14622, 14623, 14641], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:04.177Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:04.177Z, info:{ description:APIs provided by Department of Labour, Govt of Punjab, Punjab., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Labour, Govt of Punjab, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pblabour.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pblabour, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:04.177Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pblabour/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:04.177Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:10.464Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:10.464Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Postgraduate Institute of Medical Education and Research (PGIMER), Chandigarh provides patient's clinical laboratory reports to DigiLocker.\">The Postgraduate Institute of Medical<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["PGIMER, Chandigarh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410639, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pgimer"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14654], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14646, 14647, 14648, 14649, 14650, 14651, 14652, 14653, 14655], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The Postgraduate Institute of Medical Education and Research (PGIMER), Chandigarh provides patient's clinical laboratory reports to DigiLocker.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: PGIMER, Chandigarh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pgimer\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The Postgraduat<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:10.464Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14645, 14656, 14657, 14658, 14659, 14660], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:10.464Z\ninfo: { description:The Postgraduate Institute of Medical Education and Research (PGIMER), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:PGIMER, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pgimer.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pgimer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:10.464Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:10.464Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14661], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:10.464Z, info:{ description:The Postgraduate Institute of Medical Education and Research (PGIMER), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:PGIMER, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pgimer.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pgimer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:10.464Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pgimer: DataRow\">apisetu.gov.in:pgimer</span>", children: [14643, 14644, 14662], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:10.464Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:10.464Z, info:{ description:The Postgraduate Institute of Medical Education and Research (PGIMER), Chandigarh provides patient's clinical laboratory reports to DigiLocker., termsOfService:https://apisetu.gov.in/terms.php, title:PGIMER, Chandigarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pgimer.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pgimer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:10.464Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pgimer/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:10.464Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:16.734Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:16.734Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Public Health Engineering Department, Haryana, Haryana.\">APIs provided by Public Health Engine<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Public Health Engineering Department, Haryana, Haryana\">Public Health Engineering Department,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410640, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["phedharyana"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14675], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14667, 14668, 14669, 14670, 14671, 14672, 14673, 14674, 14676], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Public Health Engineering Department, Haryana, Haryana.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Public Health Engineering Department, Haryana, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: phedharyana\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:16.734Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14666, 14677, 14678, 14679, 14680, 14681], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:16.734Z\ninfo: { description:APIs provided by Public Health Engineering Department, Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Public Health Engineering Department, Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/phedharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:phedharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:16.734Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:16.734Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14682], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:16.734Z, info:{ description:APIs provided by Public Health Engineering Department, Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Public Health Engineering Department, Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/phedharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:phedharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:16.734Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:phedharyana: DataRow\">apisetu.gov.in:phedharyana</span>", children: [14664, 14665, 14683], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:16.734Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:16.734Z, info:{ description:APIs provided by Public Health Engineering Department, Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Public Health Engineering Department, Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/phedharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:phedharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:16.734Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/phedharyana/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:16.734Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:22.759Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:22.759Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"More than 8 Crore PM-JAY e-cards are now available on DigiLocker.Beneficiaries can access PMJAY e-cards on their respective Digilocker account under issued document section.\">More than 8 Crore PM-JAY e-cards are <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["National Health Authority"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410641, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pmjay"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14696], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14688, 14689, 14690, 14691, 14692, 14693, 14694, 14695, 14697], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: More than 8 Crore PM-JAY e-cards are now available on DigiLocker.Beneficiaries can access PMJAY e-cards on their respective Digilocker account under issued document section.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: National Health Authority\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pmjay\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>More than 8 Cro<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:22.759Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14687, 14698, 14699, 14700, 14701, 14702], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:22.759Z\ninfo: { description:More than 8 Crore PM-JAY e-cards are now available on DigiLocker.Beneficiaries can access PMJAY e-cards on their respective Digilocker account under issued document section., termsOfService:https://apisetu.gov.in/terms.php, title:National Health Authority, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pmjay.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pmjay, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:22.759Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:22.759Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14703], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:22.759Z, info:{ description:More than 8 Crore PM-JAY e-cards are now available on DigiLocker.Beneficiaries can access PMJAY e-cards on their respective Digilocker account under issued document section., termsOfService:https://apisetu.gov.in/terms.php, title:National Health Authority, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pmjay.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pmjay, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:22.759Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pmjay: DataRow\">apisetu.gov.in:pmjay</span>", children: [14685, 14686, 14704], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:22.759Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:22.759Z, info:{ description:More than 8 Crore PM-JAY e-cards are now available on DigiLocker.Beneficiaries can access PMJAY e-cards on their respective Digilocker account under issued document section., termsOfService:https://apisetu.gov.in/terms.php, title:National Health Authority, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pmjay.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pmjay, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:22.759Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pmjay/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:22.759Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:28.323Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:28.323Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Pramerica Life Insurance Ltd..\">APIs provided by Pramerica Life Insur<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Pramerica Life Insurance Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410642, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pramericalife"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14717], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14709, 14710, 14711, 14712, 14713, 14714, 14715, 14716, 14718], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Pramerica Life Insurance Ltd..\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Pramerica Life Insurance Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pramericalife\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:28.323Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14708, 14719, 14720, 14721, 14722, 14723], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:28.323Z\ninfo: { description:APIs provided by Pramerica Life Insurance Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Pramerica Life Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pramericalife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pramericalife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:28.323Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:28.323Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14724], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:28.323Z, info:{ description:APIs provided by Pramerica Life Insurance Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Pramerica Life Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pramericalife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pramericalife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:28.323Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pramericalife: DataRow\">apisetu.gov.in:pramericalife</span>", children: [14706, 14707, 14725], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:28.323Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:28.323Z, info:{ description:APIs provided by Pramerica Life Insurance Ltd.., termsOfService:https://apisetu.gov.in/terms.php, title:Pramerica Life Insurance Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pramericalife.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pramericalife, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:28.323Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pramericalife/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:28.323Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:34.313Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:34.313Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Punjab School Education Board (http://www.pseb.ac.in) has made available 2018-20 Class V, VIII, X and XII Certificate cum Detailed Marks Sheet in DigiLocker, which can be pulled by students into their accounts.\">Punjab School Education Board (http:/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Punjab School Education Board, Punjab"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410643, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["pseb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14738], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14730, 14731, 14732, 14733, 14734, 14735, 14736, 14737, 14739], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Punjab School Education Board (http://www.pseb.ac.in) has made available 2018-20 Class V, VIII, X and XII Certificate cum Detailed Marks Sheet in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Punjab School Education Board, Punjab\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: pseb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Punjab School E<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:34.313Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14729, 14740, 14741, 14742, 14743, 14744], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:34.313Z\ninfo: { description:Punjab School Education Board (http://www.pseb.ac.in) has made available 2018-20 Class V, VIII, X and XII Certificate cum Detailed Marks Sheet in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab School Education Board, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pseb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pseb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:34.313Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:34.313Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14745], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:34.313Z, info:{ description:Punjab School Education Board (http://www.pseb.ac.in) has made available 2018-20 Class V, VIII, X and XII Certificate cum Detailed Marks Sheet in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab School Education Board, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pseb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pseb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:34.313Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:pseb: DataRow\">apisetu.gov.in:pseb</span>", children: [14727, 14728, 14746], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:34.313Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:34.313Z, info:{ description:Punjab School Education Board (http://www.pseb.ac.in) has made available 2018-20 Class V, VIII, X and XII Certificate cum Detailed Marks Sheet in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Punjab School Education Board, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/pseb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:pseb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:34.313Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/pseb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:34.313Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:40.432Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:40.432Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Pre University Education (http://pue.kar.nic.in) is providing certificates of II PUC (Class XII) March, July 2018 and March 2019 Examination marksheets.\">Department of Pre University Educatio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Karnataka State Board (Department of Pre University Education), Karnataka\">Karnataka State Board (Department of <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410644, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["puekar"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14759], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14751, 14752, 14753, 14754, 14755, 14756, 14757, 14758, 14760], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Department of Pre University Education (http://pue.kar.nic.in) is providing certificates of II PUC (Class XII) March, July 2018 and March 2019 Examination marksheets.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Karnataka State Board (Department of Pre University Education), Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: puekar\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Department of P<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:40.432Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14750, 14761, 14762, 14763, 14764, 14765], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:40.432Z\ninfo: { description:Department of Pre University Education (http://pue.kar.nic.in) is providing certificates of II PUC (Class XII) March, July 2018 and March 2019 Examination marksheets., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka State Board (Department of Pre University Education), Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/puekar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:puekar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:40.432Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:40.432Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14766], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:40.432Z, info:{ description:Department of Pre University Education (http://pue.kar.nic.in) is providing certificates of II PUC (Class XII) March, July 2018 and March 2019 Examination marksheets., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka State Board (Department of Pre University Education), Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/puekar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:puekar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:40.432Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:puekar: DataRow\">apisetu.gov.in:puekar</span>", children: [14748, 14749, 14767], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:40.432Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:40.432Z, info:{ description:Department of Pre University Education (http://pue.kar.nic.in) is providing certificates of II PUC (Class XII) March, July 2018 and March 2019 Examination marksheets., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka State Board (Department of Pre University Education), Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/puekar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:puekar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:40.432Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/puekar/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:40.432Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:45.934Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:45.934Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by The Punjab State Board of Technical Education & Industrial Training.\">APIs provided by The Punjab State Boa<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Punjab State Board of Technical Education & Industrial Training\">The Punjab State Board of Technical E<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410645, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["punjabteched"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14780], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14772, 14773, 14774, 14775, 14776, 14777, 14778, 14779, 14781], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by The Punjab State Board of Technical Education & Industrial Training.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: The Punjab State Board of Technical Education & Industrial Training\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: punjabteched\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:45.934Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14771, 14782, 14783, 14784, 14785, 14786], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:45.934Z\ninfo: { description:APIs provided by The Punjab State Board of Technical Education & Industrial Training., termsOfService:https://apisetu.gov.in/terms.php, title:The Punjab State Board of Technical Education & Industrial Training, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/punjabteched.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:punjabteched, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:45.934Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:45.934Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14787], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:45.934Z, info:{ description:APIs provided by The Punjab State Board of Technical Education & Industrial Training., termsOfService:https://apisetu.gov.in/terms.php, title:The Punjab State Board of Technical Education & Industrial Training, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/punjabteched.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:punjabteched, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:45.934Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:punjabteched: DataRow\">apisetu.gov.in:punjabteched</span>", children: [14769, 14770, 14788], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:45.934Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:45.934Z, info:{ description:APIs provided by The Punjab State Board of Technical Education & Industrial Training., termsOfService:https://apisetu.gov.in/terms.php, title:The Punjab State Board of Technical Education & Industrial Training, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/punjabteched.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:punjabteched, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:45.934Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/punjabteched/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:45.934Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:52.198Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:52.198Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Social Justice and Empowerment Department of Rajasthan is live on DigiLocker. Citizens can pull their disability digital certificate and save into their respective locker\">Social Justice and Empowerment Depart<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Social Justice and Empowerment Department, Rajasthan\">Social Justice and Empowerment Depart<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410646, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["rajasthandsa"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14801], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14793, 14794, 14795, 14796, 14797, 14798, 14799, 14800, 14802], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Social Justice and Empowerment Department of Rajasthan is live on DigiLocker. Citizens can pull their disability digital certificate and save into their respective locker\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Social Justice and Empowerment Department, Rajasthan\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: rajasthandsa\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Social Justice <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:52.198Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14792, 14803, 14804, 14805, 14806, 14807], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:52.198Z\ninfo: { description:Social Justice and Empowerment Department of Rajasthan is live on DigiLocker. Citizens can pull their disability digital certificate and save into their respective locker, termsOfService:https://apisetu.gov.in/terms.php, title:Social Justice and Empowerment Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthandsa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthandsa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:52.198Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:52.198Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14808], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:52.198Z, info:{ description:Social Justice and Empowerment Department of Rajasthan is live on DigiLocker. Citizens can pull their disability digital certificate and save into their respective locker, termsOfService:https://apisetu.gov.in/terms.php, title:Social Justice and Empowerment Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthandsa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthandsa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:52.198Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:rajasthandsa: DataRow\">apisetu.gov.in:rajasthandsa</span>", children: [14790, 14791, 14809], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:52.198Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:52.198Z, info:{ description:Social Justice and Empowerment Department of Rajasthan is live on DigiLocker. Citizens can pull their disability digital certificate and save into their respective locker, termsOfService:https://apisetu.gov.in/terms.php, title:Social Justice and Empowerment Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthandsa.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthandsa, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:52.198Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthandsa/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:52.198Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:57.831Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:57.831Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of High School and Intermediate Education, Rajasthan (http://rajeduboard.rajasthan.gov.in/) has made available Class X (2018-2019)& Class XII (2019) mark sheet available on DigiLocker, which can be pulled by students into their respective accounts\">Board of High School and Intermediate<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Rajasthan Board of Secondary Education"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410647, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["rajasthanrajeduboard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14822], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14814, 14815, 14816, 14817, 14818, 14819, 14820, 14821, 14823], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of High School and Intermediate Education, Rajasthan (http://rajeduboard.rajasthan.gov.in/) has made available Class X (2018-2019)& Class XII (2019) mark sheet available on DigiLocker, which can be pulled by students into their respective accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Rajasthan Board of Secondary Education\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: rajasthanrajeduboard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of High S<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:18:57.831Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14813, 14824, 14825, 14826, 14827, 14828], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:57.831Z\ninfo: { description:Board of High School and Intermediate Education, Rajasthan (http://rajeduboard.rajasthan.gov.in/) has made available Class X (2018-2019)& Class XII (2019) mark sheet available on DigiLocker, which can be pulled by students into their respective accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Rajasthan Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthanrajeduboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthanrajeduboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:18:57.831Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:57.831Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14829], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:18:57.831Z, info:{ description:Board of High School and Intermediate Education, Rajasthan (http://rajeduboard.rajasthan.gov.in/) has made available Class X (2018-2019)& Class XII (2019) mark sheet available on DigiLocker, which can be pulled by students into their respective accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Rajasthan Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthanrajeduboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthanrajeduboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:57.831Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:rajasthanrajeduboard: DataRow\">apisetu.gov.in:rajasthanrajeduboard</span>", children: [14811, 14812, 14830], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:18:57.831Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:18:57.831Z, info:{ description:Board of High School and Intermediate Education, Rajasthan (http://rajeduboard.rajasthan.gov.in/) has made available Class X (2018-2019)& Class XII (2019) mark sheet available on DigiLocker, which can be pulled by students into their respective accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Rajasthan Board of Secondary Education, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/rajasthanrajeduboard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:rajasthanrajeduboard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:18:57.831Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/rajasthanrajeduboard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:18:57.831Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:03.726Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:03.726Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance policies issued by Reliance General Insurance Company Limited is available on DigiLocker at (https://www.reliancegeneral.co.in) can be fetched by Citizens into their DigiLocker accounts\">Insurance policies issued by Reliance<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Reliance General Insurance Company Ltd"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410648, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["reliancegeneral"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14843], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14835, 14836, 14837, 14838, 14839, 14840, 14841, 14842, 14844], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance policies issued by Reliance General Insurance Company Limited is available on DigiLocker at (https://www.reliancegeneral.co.in) can be fetched by Citizens into their DigiLocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Reliance General Insurance Company Ltd\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: reliancegeneral\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:03.726Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14834, 14845, 14846, 14847, 14848, 14849], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:03.726Z\ninfo: { description:Insurance policies issued by Reliance General Insurance Company Limited is available on DigiLocker at (https://www.reliancegeneral.co.in) can be fetched by Citizens into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Reliance General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/reliancegeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:reliancegeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:03.726Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:03.726Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14850], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:03.726Z, info:{ description:Insurance policies issued by Reliance General Insurance Company Limited is available on DigiLocker at (https://www.reliancegeneral.co.in) can be fetched by Citizens into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Reliance General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/reliancegeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:reliancegeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:03.726Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:reliancegeneral: DataRow\">apisetu.gov.in:reliancegeneral</span>", children: [14832, 14833, 14851], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:03.726Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:03.726Z, info:{ description:Insurance policies issued by Reliance General Insurance Company Limited is available on DigiLocker at (https://www.reliancegeneral.co.in) can be fetched by Citizens into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Reliance General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/reliancegeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:reliancegeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:03.726Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/reliancegeneral/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:03.726Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:09.589Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:09.589Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Revenue & Disaster Management Department, Assam, Assam.\">APIs provided by Revenue & Disaster M<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Revenue & Disaster Management Department, Assam, Assam\">Revenue & Disaster Management Departm<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410649, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["revenueassam"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14864], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14856, 14857, 14858, 14859, 14860, 14861, 14862, 14863, 14865], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Revenue & Disaster Management Department, Assam, Assam.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Revenue & Disaster Management Department, Assam, Assam\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: revenueassam\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:09.589Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14855, 14866, 14867, 14868, 14869, 14870], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:09.589Z\ninfo: { description:APIs provided by Revenue & Disaster Management Department, Assam, Assam., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue & Disaster Management Department, Assam, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueassam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueassam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:09.589Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:09.589Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14871], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:09.589Z, info:{ description:APIs provided by Revenue & Disaster Management Department, Assam, Assam., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue & Disaster Management Department, Assam, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueassam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueassam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:09.589Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:revenueassam: DataRow\">apisetu.gov.in:revenueassam</span>", children: [14853, 14854, 14872], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:09.589Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:09.589Z, info:{ description:APIs provided by Revenue & Disaster Management Department, Assam, Assam., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue & Disaster Management Department, Assam, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueassam.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueassam, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:09.589Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueassam/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:09.589Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:22.175Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:22.175Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Revenue Department of Odisha(http://revenueodisha.gov.in/) provides Copy of Registered Deed(Sale, Gift) of year 2010 onward and Copy of Record of Rights (RoR).\">Revenue Department of Odisha(http://r<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Revenue Department, Odisha"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410650, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["revenueodisha"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14885], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14877, 14878, 14879, 14880, 14881, 14882, 14883, 14884, 14886], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Revenue Department of Odisha(http://revenueodisha.gov.in/) provides Copy of Registered Deed(Sale, Gift) of year 2010 onward and Copy of Record of Rights (RoR).\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Revenue Department, Odisha\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: revenueodisha\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Revenue Departm<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:22.175Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14876, 14887, 14888, 14889, 14890, 14891], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:22.175Z\ninfo: { description:Revenue Department of Odisha(http://revenueodisha.gov.in/) provides Copy of Registered Deed(Sale, Gift) of year 2010 onward and Copy of Record of Rights (RoR)., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:22.175Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:22.175Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14892], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:22.175Z, info:{ description:Revenue Department of Odisha(http://revenueodisha.gov.in/) provides Copy of Registered Deed(Sale, Gift) of year 2010 onward and Copy of Record of Rights (RoR)., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:22.175Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:revenueodisha: DataRow\">apisetu.gov.in:revenueodisha</span>", children: [14874, 14875, 14893], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:22.175Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:22.175Z, info:{ description:Revenue Department of Odisha(http://revenueodisha.gov.in/) provides Copy of Registered Deed(Sale, Gift) of year 2010 onward and Copy of Record of Rights (RoR)., termsOfService:https://apisetu.gov.in/terms.php, title:Revenue Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/revenueodisha.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:revenueodisha, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:22.175Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/revenueodisha/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:22.175Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:28.074Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:28.074Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Sainik Welfare Society (www.sainikwelfare.puducherry.gov.in) is issuing digital &#34;Dependency Certificate&#34; . These certificates are being made available through DigiLocker. These Certificates can be pulled by citizens into their DigiLocker accounts.\">Department of Sainik Welfare Society <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Department of Sainik Welfare, Puducherry"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410651, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sainikwelfarepud"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14906], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14898, 14899, 14900, 14901, 14902, 14903, 14904, 14905, 14907], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Department of Sainik Welfare Society (www.sainikwelfare.puducherry.gov.in) is issuing digital &#34;Dependency Certificate&#34; . These certificates are being made available through DigiLocker. These Certificates can be pulled by citizens into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Sainik Welfare, Puducherry\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: sainikwelfarepud\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Department of S<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:28.074Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14897, 14908, 14909, 14910, 14911, 14912], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:28.074Z\ninfo: { description:Department of Sainik Welfare Society (www.sainikwelfare.puducherry.gov.in) is issuing digital &#34;Dependency Certificate&#34; . These certificates are being made available through DigiLocker. These Certificates can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Sainik Welfare, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sainikwelfarepud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sainikwelfarepud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:28.074Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:28.074Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14913], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:28.074Z, info:{ description:Department of Sainik Welfare Society (www.sainikwelfare.puducherry.gov.in) is issuing digital &#34;Dependency Certificate&#34; . These certificates are being made available through DigiLocker. These Certificates can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Sainik Welfare, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sainikwelfarepud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sainikwelfarepud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:28.074Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:sainikwelfarepud: DataRow\">apisetu.gov.in:sainikwelfarepud</span>", children: [14895, 14896, 14914], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:28.074Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:28.074Z, info:{ description:Department of Sainik Welfare Society (www.sainikwelfare.puducherry.gov.in) is issuing digital &#34;Dependency Certificate&#34; . These certificates are being made available through DigiLocker. These Certificates can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Sainik Welfare, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sainikwelfarepud.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sainikwelfarepud, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:28.074Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sainikwelfarepud/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:28.074Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:33.937Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:33.937Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs provided by Antyodaya Saral Haryana, Haryana.\">APIs provided by Antyodaya Saral Hary<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Antyodaya Saral Haryana, Haryana"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410652, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["saralharyana"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14927], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14919, 14920, 14921, 14922, 14923, 14924, 14925, 14926, 14928], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by Antyodaya Saral Haryana, Haryana.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Antyodaya Saral Haryana, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: saralharyana\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:33.937Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14918, 14929, 14930, 14931, 14932, 14933], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:33.937Z\ninfo: { description:APIs provided by Antyodaya Saral Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Antyodaya Saral Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/saralharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:saralharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:33.937Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:33.937Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14934], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:33.937Z, info:{ description:APIs provided by Antyodaya Saral Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Antyodaya Saral Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/saralharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:saralharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:33.937Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:saralharyana: DataRow\">apisetu.gov.in:saralharyana</span>", children: [14916, 14917, 14935], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:33.937Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:33.937Z, info:{ description:APIs provided by Antyodaya Saral Haryana, Haryana., termsOfService:https://apisetu.gov.in/terms.php, title:Antyodaya Saral Haryana, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/saralharyana.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:saralharyana, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:33.937Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/saralharyana/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:33.937Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:39.474Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:39.474Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance Policies such as Car, Two Wheeler, Commercial Vehicle, Health and Travel issued by SBI General (https://www.sbigeneral.in) are now available for Customers to be fetched into their DigiLocker accounts\">Insurance Policies such as Car, Two W<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["SBI General Insurance Company Ltd"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410653, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sbigeneral"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14948], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14940, 14941, 14942, 14943, 14944, 14945, 14946, 14947, 14949], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance Policies such as Car, Two Wheeler, Commercial Vehicle, Health and Travel issued by SBI General (https://www.sbigeneral.in) are now available for Customers to be fetched into their DigiLocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: SBI General Insurance Company Ltd\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: sbigeneral\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance Polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:39.474Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14939, 14950, 14951, 14952, 14953, 14954], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:39.474Z\ninfo: { description:Insurance Policies such as Car, Two Wheeler, Commercial Vehicle, Health and Travel issued by SBI General (https://www.sbigeneral.in) are now available for Customers to be fetched into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:SBI General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sbigeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sbigeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:39.474Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:39.474Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14955], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:39.474Z, info:{ description:Insurance Policies such as Car, Two Wheeler, Commercial Vehicle, Health and Travel issued by SBI General (https://www.sbigeneral.in) are now available for Customers to be fetched into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:SBI General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sbigeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sbigeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:39.474Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:sbigeneral: DataRow\">apisetu.gov.in:sbigeneral</span>", children: [14937, 14938, 14956], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:39.474Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:39.474Z, info:{ description:Insurance Policies such as Car, Two Wheeler, Commercial Vehicle, Health and Travel issued by SBI General (https://www.sbigeneral.in) are now available for Customers to be fetched into their DigiLocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:SBI General Insurance Company Ltd, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sbigeneral.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sbigeneral, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:39.474Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sbigeneral/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:39.474Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:45.307Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:45.307Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The State Council for Vocational Training (SCVT), Uttar Pradesh (http://www.vppup.in/) provides semester and consolidated mark sheets as well as vocational certificates for years 2013 to 2016.\">The State Council for Vocational Trai<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"UP State Council of Vocational Training, Uttar Pradesh, Uttar Pradesh\">UP State Council of Vocational Traini<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410654, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["scvtup"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14969], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14961, 14962, 14963, 14964, 14965, 14966, 14967, 14968, 14970], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The State Council for Vocational Training (SCVT), Uttar Pradesh (http://www.vppup.in/) provides semester and consolidated mark sheets as well as vocational certificates for years 2013 to 2016.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: UP State Council of Vocational Training, Uttar Pradesh, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: scvtup\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The State Counc<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:45.307Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14960, 14971, 14972, 14973, 14974, 14975], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:45.307Z\ninfo: { description:The State Council for Vocational Training (SCVT), Uttar Pradesh (http://www.vppup.in/) provides semester and consolidated mark sheets as well as vocational certificates for years 2013 to 2016., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Council of Vocational Training, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/scvtup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:scvtup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:45.307Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:45.307Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14976], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:45.307Z, info:{ description:The State Council for Vocational Training (SCVT), Uttar Pradesh (http://www.vppup.in/) provides semester and consolidated mark sheets as well as vocational certificates for years 2013 to 2016., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Council of Vocational Training, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/scvtup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:scvtup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:45.307Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:scvtup: DataRow\">apisetu.gov.in:scvtup</span>", children: [14958, 14959, 14977], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:45.307Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:45.307Z, info:{ description:The State Council for Vocational Training (SCVT), Uttar Pradesh (http://www.vppup.in/) provides semester and consolidated mark sheets as well as vocational certificates for years 2013 to 2016., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Council of Vocational Training, Uttar Pradesh, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/scvtup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:scvtup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:45.307Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/scvtup/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:45.307Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:50.987Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:50.987Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Secondary Education, Assam (https://sebaonline.org/) has made available 2018 Class X results in DigiLocker, which can be pulled by students into their accounts.\">Board of Secondary Education, Assam (<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Assam State Board of Secondary Education, Assam\">Assam State Board of Secondary Educat<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410655, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sebaonline"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [14990], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [14982, 14983, 14984, 14985, 14986, 14987, 14988, 14989, 14991], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of Secondary Education, Assam (https://sebaonline.org/) has made available 2018 Class X results in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Assam State Board of Secondary Education, Assam\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: sebaonline\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of Second<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:19:50.987Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [14981, 14992, 14993, 14994, 14995, 14996], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:50.987Z\ninfo: { description:Board of Secondary Education, Assam (https://sebaonline.org/) has made available 2018 Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Assam State Board of Secondary Education, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sebaonline.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sebaonline, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:19:50.987Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:50.987Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [14997], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:19:50.987Z, info:{ description:Board of Secondary Education, Assam (https://sebaonline.org/) has made available 2018 Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Assam State Board of Secondary Education, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sebaonline.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sebaonline, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:50.987Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:sebaonline: DataRow\">apisetu.gov.in:sebaonline</span>", children: [14979, 14980, 14998], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:19:50.987Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:19:50.987Z, info:{ description:Board of Secondary Education, Assam (https://sebaonline.org/) has made available 2018 Class X results in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Assam State Board of Secondary Education, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/sebaonline.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:sebaonline, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:19:50.987Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/sebaonline/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:19:50.987Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:25.252Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:25.252Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Birth, Still-Birth, Death and Marriage Certificates issued by the Department, from 01 January 2014 onward, can be pulled into citizens' DigiLocker accounts.\">Birth, Still-Birth, Death and Marriag<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Directorate of Economics and Statistics Cum Chief Registrar, Rajasthan, Rajasthan\">Directorate of Economics and Statisti<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410656, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["statisticsrajasthan"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15011], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15003, 15004, 15005, 15006, 15007, 15008, 15009, 15010, 15012], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Birth, Still-Birth, Death and Marriage Certificates issued by the Department, from 01 January 2014 onward, can be pulled into citizens' DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Directorate of Economics and Statistics Cum Chief Registrar, Rajasthan, Rajasthan\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: statisticsrajasthan\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Birth, Still-Bi<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:25.252Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15002, 15013, 15014, 15015, 15016, 15017], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:25.252Z\ninfo: { description:Birth, Still-Birth, Death and Marriage Certificates issued by the Department, from 01 January 2014 onward, can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Economics and Statistics Cum Chief Registrar, Rajasthan, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/statisticsrajasthan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:statisticsrajasthan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:25.252Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:25.252Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15018], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:25.252Z, info:{ description:Birth, Still-Birth, Death and Marriage Certificates issued by the Department, from 01 January 2014 onward, can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Economics and Statistics Cum Chief Registrar, Rajasthan, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/statisticsrajasthan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:statisticsrajasthan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:25.252Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:statisticsrajasthan: DataRow\">apisetu.gov.in:statisticsrajasthan</span>", children: [15000, 15001, 15019], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:25.252Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:25.252Z, info:{ description:Birth, Still-Birth, Death and Marriage Certificates issued by the Department, from 01 January 2014 onward, can be pulled into citizens' DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Directorate of Economics and Statistics Cum Chief Registrar, Rajasthan, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/statisticsrajasthan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:statisticsrajasthan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:25.252Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/statisticsrajasthan/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:25.252Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:30.648Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:30.648Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Empowerment of Persons with Disabilities is issuing Unique Disability ID through DigiLocker. These can be pulled by beneficiaries into their DigiLocker accounts.\">Department of Empowerment of Persons <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Department of Empowerment of Persons with Disabilities\">Department of Empowerment of Persons <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410657, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["swavlambancard"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15032], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15024, 15025, 15026, 15027, 15028, 15029, 15030, 15031, 15033], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Department of Empowerment of Persons with Disabilities is issuing Unique Disability ID through DigiLocker. These can be pulled by beneficiaries into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Department of Empowerment of Persons with Disabilities\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: swavlambancard\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Department of E<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:30.648Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15023, 15034, 15035, 15036, 15037, 15038], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:30.648Z\ninfo: { description:Department of Empowerment of Persons with Disabilities is issuing Unique Disability ID through DigiLocker. These can be pulled by beneficiaries into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Empowerment of Persons with Disabilities, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/swavlambancard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:swavlambancard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:30.648Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:30.648Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15039], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:30.648Z, info:{ description:Department of Empowerment of Persons with Disabilities is issuing Unique Disability ID through DigiLocker. These can be pulled by beneficiaries into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Empowerment of Persons with Disabilities, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/swavlambancard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:swavlambancard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:30.648Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:swavlambancard: DataRow\">apisetu.gov.in:swavlambancard</span>", children: [15021, 15022, 15040], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:30.648Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:30.648Z, info:{ description:Department of Empowerment of Persons with Disabilities is issuing Unique Disability ID through DigiLocker. These can be pulled by beneficiaries into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Department of Empowerment of Persons with Disabilities, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/swavlambancard.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:swavlambancard, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:30.648Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/swavlambancard/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:30.648Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:36.714Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:36.714Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Tata AIA Life Insurance Company Limited provides life insurance solutions to its consumers. Customers can access their policy details [Insurance Policy � Life] and premium receipts [Premium Receipt] that are available to be pulled by the policy holders into their DigiLocker account (only documents issued on or after 28-June-2019 are currently available)\">Tata AIA Life Insurance Company Limit<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Tata AIA Life Insurance Co. Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410658, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["tataaia"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15053], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15045, 15046, 15047, 15048, 15049, 15050, 15051, 15052, 15054], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Tata AIA Life Insurance Company Limited provides life insurance solutions to its consumers. Customers can access their policy details [Insurance Policy � Life] and premium receipts [Premium Receipt] that are available to be pulled by the policy holders into their DigiLocker account (only documents issued on or after 28-June-2019 are currently available)\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Tata AIA Life Insurance Co. Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: tataaia\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Tata AIA Life I<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:36.714Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15044, 15055, 15056, 15057, 15058, 15059], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:36.714Z\ninfo: { description:Tata AIA Life Insurance Company Limited provides life insurance solutions to its consumers. Customers can access their policy details [Insurance Policy � Life] and premium receipts [Premium Receipt] that are available to be pulled by the policy holders into their DigiLocker account (only documents issued on or after 28-June-2019 are currently available), termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIA Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:36.714Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:36.714Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15060], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:36.714Z, info:{ description:Tata AIA Life Insurance Company Limited provides life insurance solutions to its consumers. Customers can access their policy details [Insurance Policy � Life] and premium receipts [Premium Receipt] that are available to be pulled by the policy holders into their DigiLocker account (only documents issued on or after 28-June-2019 are currently available), termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIA Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:36.714Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:tataaia: DataRow\">apisetu.gov.in:tataaia</span>", children: [15042, 15043, 15061], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:36.714Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:36.714Z, info:{ description:Tata AIA Life Insurance Company Limited provides life insurance solutions to its consumers. Customers can access their policy details [Insurance Policy � Life] and premium receipts [Premium Receipt] that are available to be pulled by the policy holders into their DigiLocker account (only documents issued on or after 28-June-2019 are currently available), termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIA Life Insurance Co. Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaia.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaia, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:36.714Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaia/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataai... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:36.714Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:42.272Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:42.272Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Insurance policies issued by Tata AIG (https://www.tataaig.com) that are available can be fetched by Customers into their DigiLocker accounts.\">Insurance policies issued by Tata AIG<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Tata AIG General Insurance Company Ltd."] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410659, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["tataaig"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15074], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15066, 15067, 15068, 15069, 15070, 15071, 15072, 15073, 15075], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Insurance policies issued by Tata AIG (https://www.tataaig.com) that are available can be fetched by Customers into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Tata AIG General Insurance Company Ltd.\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: tataaig\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Insurance polic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:42.272Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15065, 15076, 15077, 15078, 15079, 15080], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:42.272Z\ninfo: { description:Insurance policies issued by Tata AIG (https://www.tataaig.com) that are available can be fetched by Customers into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIG General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaig.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaig, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:42.272Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:42.272Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15081], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:42.272Z, info:{ description:Insurance policies issued by Tata AIG (https://www.tataaig.com) that are available can be fetched by Customers into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIG General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaig.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaig, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:42.272Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:tataaig: DataRow\">apisetu.gov.in:tataaig</span>", children: [15063, 15064, 15082], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:42.272Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:42.272Z, info:{ description:Insurance policies issued by Tata AIG (https://www.tataaig.com) that are available can be fetched by Customers into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tata AIG General Insurance Company Ltd., version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tataaig.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tataaig, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:42.272Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tataaig/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:42.272Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:48.075Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:48.075Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Tripura Board of Secondary Education, (http://tbse.in) has made available Class X (2017-2019) Marksheets in DigiLocker, which can be pulled by students into their accounts.\">Tripura Board of Secondary Education,<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Tripura State Board of Secondary Education, Tripura\">Tripura State Board of Secondary Educ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410660, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["tbse"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15095], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15096], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Tripura Board of Secondary Education, (http://tbse.in) has made available Class X (2017-2019) Marksheets in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Tripura State Board of Secondary Education, Tripura\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: tbse\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Tripura Board o<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:48.075Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15086, 15097, 15098, 15099, 15100, 15101], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:48.075Z\ninfo: { description:Tripura Board of Secondary Education, (http://tbse.in) has made available Class X (2017-2019) Marksheets in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tripura State Board of Secondary Education, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:48.075Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:48.075Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15102], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:48.075Z, info:{ description:Tripura Board of Secondary Education, (http://tbse.in) has made available Class X (2017-2019) Marksheets in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tripura State Board of Secondary Education, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:48.075Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:tbse: DataRow\">apisetu.gov.in:tbse</span>", children: [15084, 15085, 15103], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:48.075Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:48.075Z, info:{ description:Tripura Board of Secondary Education, (http://tbse.in) has made available Class X (2017-2019) Marksheets in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Tripura State Board of Secondary Education, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/tbse.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:tbse, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:48.075Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/tbse/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:48.075Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:54.311Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:54.311Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) & Vehicle Registration Certificate (RC) as available in Ministry of Transport's SARATHI & VAHAN portals (http://morth.nic.in/) can be pulled by citizens into their DigiLocker accounts.\">Driving License (DL) & Vehicle Regist<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Ministry of Road Transport and Highways"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410661, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transport"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15116], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115, 15117], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) & Vehicle Registration Certificate (RC) as available in Ministry of Transport's SARATHI & VAHAN portals (http://morth.nic.in/) can be pulled by citizens into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Ministry of Road Transport and Highways\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transport\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:20:54.311Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15107, 15118, 15119, 15120, 15121, 15122], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:54.311Z\ninfo: { description:Driving License (DL) & Vehicle Registration Certificate (RC) as available in Ministry of Transport's SARATHI & VAHAN portals (http://morth.nic.in/) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Road Transport and Highways, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transport.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transport, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:20:54.311Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:54.311Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15123], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:20:54.311Z, info:{ description:Driving License (DL) & Vehicle Registration Certificate (RC) as available in Ministry of Transport's SARATHI & VAHAN portals (http://morth.nic.in/) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Road Transport and Highways, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transport.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transport, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:54.311Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transport: DataRow\">apisetu.gov.in:transport</span>", children: [15105, 15106, 15124], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:20:54.311Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:20:54.311Z, info:{ description:Driving License (DL) & Vehicle Registration Certificate (RC) as available in Ministry of Transport's SARATHI & VAHAN portals (http://morth.nic.in/) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Ministry of Road Transport and Highways, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transport.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transport, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:20:54.311Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transport/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:20:54.311Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:01.269Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:01.269Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Andaman & Nicobar"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410662, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportan"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15137], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136, 15138], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Andaman & Nicobar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportan\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:01.269Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15128, 15139, 15140, 15141, 15142, 15143], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:01.269Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:01.269Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:01.269Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15144], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:01.269Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:01.269Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportan: DataRow\">apisetu.gov.in:transportan</span>", children: [15126, 15127, 15145], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:01.269Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:01.269Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andaman & Nicobar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportan.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportan, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:01.269Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportan/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:01.269Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:07.443Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:07.443Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Andhra Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410663, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportap"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15158], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15150, 15151, 15152, 15153, 15154, 15155, 15156, 15157, 15159], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Andhra Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportap\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:07.443Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15149, 15160, 15161, 15162, 15163, 15164], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:07.443Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andhra Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:07.443Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:07.443Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15165], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:07.443Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andhra Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:07.443Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportap: DataRow\">apisetu.gov.in:transportap</span>", children: [15147, 15148, 15166], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:07.443Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:07.443Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Andhra Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportap.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportap, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:07.443Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportap/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:07.443Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:13.922Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:13.922Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Arunachal Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410664, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportar"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15179], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15171, 15172, 15173, 15174, 15175, 15176, 15177, 15178, 15180], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Arunachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportar\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:13.922Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15170, 15181, 15182, 15183, 15184, 15185], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:13.922Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:13.922Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:13.922Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15186], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:13.922Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:13.922Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportar: DataRow\">apisetu.gov.in:transportar</span>", children: [15168, 15169, 15187], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:13.922Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:13.922Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Arunachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportar.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportar, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:13.922Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportar/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:13.922Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:19.727Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:19.727Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Assam"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410665, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportas"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15200], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15192, 15193, 15194, 15195, 15196, 15197, 15198, 15199, 15201], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Assam\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportas\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:19.727Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15191, 15202, 15203, 15204, 15205, 15206], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:19.727Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportas.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportas, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:19.727Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:19.727Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15207], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:19.727Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportas.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportas, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:19.727Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportas: DataRow\">apisetu.gov.in:transportas</span>", children: [15189, 15190, 15208], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:19.727Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:19.727Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Assam, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportas.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportas, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:19.727Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportas/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:19.727Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:25.576Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:25.576Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Bihar"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410666, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportbr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15221], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15213, 15214, 15215, 15216, 15217, 15218, 15219, 15220, 15222], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Bihar\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportbr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:25.576Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15212, 15223, 15224, 15225, 15226, 15227], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:25.576Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportbr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportbr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:25.576Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:25.576Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15228], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:25.576Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportbr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportbr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:25.576Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportbr: DataRow\">apisetu.gov.in:transportbr</span>", children: [15210, 15211, 15229], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:25.576Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:25.576Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Bihar, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportbr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportbr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:25.576Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportbr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:25.576Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:31.286Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:31.286Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Chhattisgarh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410667, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportcg"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15242], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15234, 15235, 15236, 15237, 15238, 15239, 15240, 15241, 15243], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Chhattisgarh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportcg\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:31.286Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15233, 15244, 15245, 15246, 15247, 15248], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:31.286Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportcg.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportcg, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:31.286Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:31.286Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15249], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:31.286Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportcg.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportcg, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:31.286Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportcg: DataRow\">apisetu.gov.in:transportcg</span>", children: [15231, 15232, 15250], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:31.286Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:31.286Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Chhattisgarh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportcg.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportcg, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:31.286Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportcg/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:31.286Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:37.391Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:37.391Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Daman & Diu"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410668, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportdd"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15263], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15255, 15256, 15257, 15258, 15259, 15260, 15261, 15262, 15264], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Daman & Diu\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportdd\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:37.391Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15254, 15265, 15266, 15267, 15268, 15269], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:37.391Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Daman & Diu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:37.391Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:37.391Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15270], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:37.391Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Daman & Diu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:37.391Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportdd: DataRow\">apisetu.gov.in:transportdd</span>", children: [15252, 15253, 15271], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:37.391Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:37.391Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Daman & Diu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdd.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdd, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:37.391Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdd/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:37.391Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:43.875Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:43.875Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Transport Department, Dadra & Nagar Haveli\">Transport Department, Dadra & Nagar H<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410669, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportdh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15284], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15276, 15277, 15278, 15279, 15280, 15281, 15282, 15283, 15285], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Dadra & Nagar Haveli\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportdh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:43.875Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15275, 15286, 15287, 15288, 15289, 15290], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:43.875Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Dadra & Nagar Haveli, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:43.875Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:43.875Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15291], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:43.875Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Dadra & Nagar Haveli, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:43.875Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportdh: DataRow\">apisetu.gov.in:transportdh</span>", children: [15273, 15274, 15292], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:43.875Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:43.875Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Dadra & Nagar Haveli, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:43.875Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:43.875Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:50.526Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:50.526Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Delhi"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410670, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportdl"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15305], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15297, 15298, 15299, 15300, 15301, 15302, 15303, 15304, 15306], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Delhi\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportdl\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:50.526Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15296, 15307, 15308, 15309, 15310, 15311], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:50.526Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:50.526Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:50.526Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15312], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:50.526Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:50.526Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportdl: DataRow\">apisetu.gov.in:transportdl</span>", children: [15294, 15295, 15313], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:50.526Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:50.526Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Delhi, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportdl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportdl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:50.526Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportdl/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:50.526Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:56.506Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:56.506Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Goa"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410671, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportga"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15326], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15318, 15319, 15320, 15321, 15322, 15323, 15324, 15325, 15327], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Goa\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportga\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:21:56.506Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15317, 15328, 15329, 15330, 15331, 15332], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:56.506Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportga.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportga, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:21:56.506Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:56.506Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15333], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:21:56.506Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportga.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportga, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:56.506Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportga: DataRow\">apisetu.gov.in:transportga</span>", children: [15315, 15316, 15334], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:21:56.506Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:21:56.506Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Goa, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportga.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportga, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:21:56.506Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportga/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:21:56.506Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:02.691Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:02.691Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Gujarat"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410672, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportgj"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15347], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15339, 15340, 15341, 15342, 15343, 15344, 15345, 15346, 15348], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Gujarat\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportgj\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:02.691Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15338, 15349, 15350, 15351, 15352, 15353], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:02.691Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Gujarat, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportgj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportgj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:02.691Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:02.691Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15354], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:02.691Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Gujarat, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportgj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportgj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:02.691Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportgj: DataRow\">apisetu.gov.in:transportgj</span>", children: [15336, 15337, 15355], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:02.691Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:02.691Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Gujarat, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportgj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportgj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:02.691Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportgj/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:02.691Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:08.813Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:08.813Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Himachal Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410673, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transporthp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15368], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15360, 15361, 15362, 15363, 15364, 15365, 15366, 15367, 15369], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Himachal Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transporthp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:08.813Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15359, 15370, 15371, 15372, 15373, 15374], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:08.813Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:08.813Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:08.813Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15375], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:08.813Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:08.813Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transporthp: DataRow\">apisetu.gov.in:transporthp</span>", children: [15357, 15358, 15376], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:08.813Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:08.813Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Himachal Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:08.813Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:08.813Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:14.466Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:14.466Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Haryana"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410674, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transporthr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15389], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15381, 15382, 15383, 15384, 15385, 15386, 15387, 15388, 15390], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Haryana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transporthr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:14.466Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15380, 15391, 15392, 15393, 15394, 15395], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:14.466Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:14.466Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:14.466Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15396], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:14.466Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:14.466Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transporthr: DataRow\">apisetu.gov.in:transporthr</span>", children: [15378, 15379, 15397], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:14.466Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:14.466Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Haryana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporthr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporthr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:14.466Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporthr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:14.466Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:20.267Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:20.267Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Jharkhand"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410675, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportjh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15410], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15402, 15403, 15404, 15405, 15406, 15407, 15408, 15409, 15411], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Jharkhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportjh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:20.267Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15401, 15412, 15413, 15414, 15415, 15416], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:20.267Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:20.267Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:20.267Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15417], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:20.267Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:20.267Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportjh: DataRow\">apisetu.gov.in:transportjh</span>", children: [15399, 15400, 15418], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:20.267Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:20.267Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jharkhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:20.267Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:20.267Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:26.165Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:26.165Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Jammu & Kashmir"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410676, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportjk"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15431], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15423, 15424, 15425, 15426, 15427, 15428, 15429, 15430, 15432], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Jammu & Kashmir\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportjk\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:26.165Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15422, 15433, 15434, 15435, 15436, 15437], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:26.165Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jammu & Kashmir, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:26.165Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:26.165Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15438], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:26.165Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jammu & Kashmir, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:26.165Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportjk: DataRow\">apisetu.gov.in:transportjk</span>", children: [15420, 15421, 15439], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:26.165Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:26.165Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Jammu & Kashmir, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportjk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportjk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:26.165Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportjk/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:26.165Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:31.758Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:31.758Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) & Vehicle Registration Certificate (RC) as issued by Transport Department, Government of Karnataka (http://transport.karnataka.gov.in) can be pulled by citizens into their DigiLocker accounts.\">Driving License (DL) & Vehicle Regist<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Karnataka Department of Transport, Karnataka\">Karnataka Department of Transport, Ka<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410677, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportka"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15452], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15444, 15445, 15446, 15447, 15448, 15449, 15450, 15451, 15453], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) & Vehicle Registration Certificate (RC) as issued by Transport Department, Government of Karnataka (http://transport.karnataka.gov.in) can be pulled by citizens into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Karnataka Department of Transport, Karnataka\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportka\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:31.758Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15443, 15454, 15455, 15456, 15457, 15458], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:31.758Z\ninfo: { description:Driving License (DL) & Vehicle Registration Certificate (RC) as issued by Transport Department, Government of Karnataka (http://transport.karnataka.gov.in) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Department of Transport, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportka.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportka, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:31.758Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:31.758Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15459], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:31.758Z, info:{ description:Driving License (DL) & Vehicle Registration Certificate (RC) as issued by Transport Department, Government of Karnataka (http://transport.karnataka.gov.in) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Department of Transport, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportka.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportka, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:31.758Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportka: DataRow\">apisetu.gov.in:transportka</span>", children: [15441, 15442, 15460], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:31.758Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:31.758Z, info:{ description:Driving License (DL) & Vehicle Registration Certificate (RC) as issued by Transport Department, Government of Karnataka (http://transport.karnataka.gov.in) can be pulled by citizens into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Karnataka Department of Transport, Karnataka, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportka.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportka, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:31.758Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportka/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:31.758Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:38.172Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:38.172Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Motor Vehicle Department, Kerala"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410678, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportkl"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15473], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15465, 15466, 15467, 15468, 15469, 15470, 15471, 15472, 15474], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Motor Vehicle Department, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportkl\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:38.172Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15464, 15475, 15476, 15477, 15478, 15479], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:38.172Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportkl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportkl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:38.172Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:38.172Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15480], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:38.172Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportkl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportkl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:38.172Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportkl: DataRow\">apisetu.gov.in:transportkl</span>", children: [15462, 15463, 15481], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:38.172Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:38.172Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportkl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportkl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:38.172Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportkl/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:38.172Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:44.192Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:44.192Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Lakshadweep"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410679, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportld"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15494], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15486, 15487, 15488, 15489, 15490, 15491, 15492, 15493, 15495], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Lakshadweep\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportld\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:44.192Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15485, 15496, 15497, 15498, 15499, 15500], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:44.192Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Lakshadweep, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportld.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportld, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:44.192Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:44.192Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15501], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:44.192Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Lakshadweep, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportld.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportld, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:44.192Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportld: DataRow\">apisetu.gov.in:transportld</span>", children: [15483, 15484, 15502], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:44.192Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:44.192Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Lakshadweep, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportld.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportld, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:44.192Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportld/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:44.192Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:50.032Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:50.032Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Motor Vehicle Department, Maharashtra"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410680, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportmh"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15515], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15507, 15508, 15509, 15510, 15511, 15512, 15513, 15514, 15516], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Motor Vehicle Department, Maharashtra\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportmh\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:50.032Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15506, 15517, 15518, 15519, 15520, 15521], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:50.032Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:50.032Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:50.032Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15522], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:50.032Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:50.032Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportmh: DataRow\">apisetu.gov.in:transportmh</span>", children: [15504, 15505, 15523], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:50.032Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:50.032Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Maharashtra, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmh.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmh, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:50.032Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmh/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:50.032Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:56.220Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:56.220Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Meghalaya"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410681, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportml"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15536], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15537], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Meghalaya\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportml\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:22:56.220Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15527, 15538, 15539, 15540, 15541, 15542], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:56.220Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportml.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportml, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:22:56.220Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:56.220Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15543], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:22:56.220Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportml.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportml, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:56.220Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportml: DataRow\">apisetu.gov.in:transportml</span>", children: [15525, 15526, 15544], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:22:56.220Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:22:56.220Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Meghalaya, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportml.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportml, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:22:56.220Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportml/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:22:56.220Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:02.250Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:02.250Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Manipur"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410682, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportmn"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15557], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15549, 15550, 15551, 15552, 15553, 15554, 15555, 15556, 15558], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Manipur\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportmn\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:02.250Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15548, 15559, 15560, 15561, 15562, 15563], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:02.250Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Manipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:02.250Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:02.250Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15564], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:02.250Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Manipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:02.250Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportmn: DataRow\">apisetu.gov.in:transportmn</span>", children: [15546, 15547, 15565], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:02.250Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:02.250Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Manipur, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:02.250Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmn/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:02.250Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:08.458Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:08.458Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Madhya Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410683, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportmp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15578], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15570, 15571, 15572, 15573, 15574, 15575, 15576, 15577, 15579], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Madhya Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportmp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:08.458Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15569, 15580, 15581, 15582, 15583, 15584], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:08.458Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:08.458Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:08.458Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15585], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:08.458Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:08.458Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportmp: DataRow\">apisetu.gov.in:transportmp</span>", children: [15567, 15568, 15586], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:08.458Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:08.458Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Madhya Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:08.458Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:08.458Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:14.374Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:14.374Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Mizoram"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410684, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportmz"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15599], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15591, 15592, 15593, 15594, 15595, 15596, 15597, 15598, 15600], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Mizoram\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportmz\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:14.374Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15590, 15601, 15602, 15603, 15604, 15605], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:14.374Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:14.374Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:14.374Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15606], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:14.374Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:14.374Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportmz: DataRow\">apisetu.gov.in:transportmz</span>", children: [15588, 15589, 15607], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:14.374Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:14.374Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Mizoram, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportmz.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportmz, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:14.374Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportmz/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:14.374Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:21.024Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:21.024Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Motor Vehicle Department, Nagaland"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410685, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportnl"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15620], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15612, 15613, 15614, 15615, 15616, 15617, 15618, 15619, 15621], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Motor Vehicle Department, Nagaland\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportnl\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:21.024Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15611, 15622, 15623, 15624, 15625, 15626], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:21.024Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Nagaland, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportnl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportnl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:21.024Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:21.024Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15627], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:21.024Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Nagaland, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportnl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportnl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:21.024Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportnl: DataRow\">apisetu.gov.in:transportnl</span>", children: [15609, 15610, 15628], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:21.024Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:21.024Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Nagaland, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportnl.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportnl, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:21.024Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportnl/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:21.024Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:27.332Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:27.332Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Motor Vehicle Department, Odisha"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410686, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportod"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15641], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15633, 15634, 15635, 15636, 15637, 15638, 15639, 15640, 15642], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Motor Vehicle Department, Odisha\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportod\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:27.332Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15632, 15643, 15644, 15645, 15646, 15647], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:27.332Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportod.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportod, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:27.332Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:27.332Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15648], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:27.332Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportod.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportod, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:27.332Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportod: DataRow\">apisetu.gov.in:transportod</span>", children: [15630, 15631, 15649], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:27.332Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:27.332Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Motor Vehicle Department, Odisha, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportod.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportod, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:27.332Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportod/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:27.332Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:32.967Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:32.967Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Punjab"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410687, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportpb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15662], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15654, 15655, 15656, 15657, 15658, 15659, 15660, 15661, 15663], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Punjab\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportpb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:32.967Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15653, 15664, 15665, 15666, 15667, 15668], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:32.967Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:32.967Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:32.967Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15669], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:32.967Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:32.967Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportpb: DataRow\">apisetu.gov.in:transportpb</span>", children: [15651, 15652, 15670], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:32.967Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:32.967Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Punjab, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:32.967Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:32.967Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:40.139Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:40.139Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Puducherry"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410688, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportpy"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15683], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15675, 15676, 15677, 15678, 15679, 15680, 15681, 15682, 15684], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Puducherry\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportpy\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:40.139Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15674, 15685, 15686, 15687, 15688, 15689], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:40.139Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpy.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpy, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:40.139Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:40.139Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15690], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:40.139Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpy.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpy, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:40.139Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportpy: DataRow\">apisetu.gov.in:transportpy</span>", children: [15672, 15673, 15691], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:40.139Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:40.139Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Puducherry, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportpy.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportpy, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:40.139Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportpy/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:40.139Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:46.006Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:46.006Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Rajasthan"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410689, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportrj"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15704], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15696, 15697, 15698, 15699, 15700, 15701, 15702, 15703, 15705], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Rajasthan\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportrj\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:46.006Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15695, 15706, 15707, 15708, 15709, 15710], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:46.006Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportrj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportrj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:46.006Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:46.006Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15711], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:46.006Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportrj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportrj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:46.006Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportrj: DataRow\">apisetu.gov.in:transportrj</span>", children: [15693, 15694, 15712], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:46.006Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:46.006Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Rajasthan, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportrj.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportrj, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:46.006Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportrj/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:46.006Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:52.943Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:52.943Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Sikkim"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410690, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportsk"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15725], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15717, 15718, 15719, 15720, 15721, 15722, 15723, 15724, 15726], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Sikkim\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportsk\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:52.943Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15716, 15727, 15728, 15729, 15730, 15731], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:52.943Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Sikkim, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportsk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportsk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:52.943Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:52.943Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15732], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:52.943Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Sikkim, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportsk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportsk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:52.943Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportsk: DataRow\">apisetu.gov.in:transportsk</span>", children: [15714, 15715, 15733], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:52.943Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:52.943Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Sikkim, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportsk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportsk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:52.943Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportsk/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:52.943Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:58.591Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:58.591Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Tamil Nadu"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410691, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transporttn"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15746], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15738, 15739, 15740, 15741, 15742, 15743, 15744, 15745, 15747], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Tamil Nadu\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transporttn\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:23:58.591Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15737, 15748, 15749, 15750, 15751, 15752], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:58.591Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:23:58.591Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:58.591Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15753], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:23:58.591Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:58.591Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transporttn: DataRow\">apisetu.gov.in:transporttn</span>", children: [15735, 15736, 15754], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:23:58.591Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:23:58.591Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tamil Nadu, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttn.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttn, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:23:58.591Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttn/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:23:58.591Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:04.669Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:04.669Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Tripura"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410692, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transporttr"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15767], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15759, 15760, 15761, 15762, 15763, 15764, 15765, 15766, 15768], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Tripura\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transporttr\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:04.669Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15758, 15769, 15770, 15771, 15772, 15773], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:04.669Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:04.669Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:04.669Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15774], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:04.669Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:04.669Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transporttr: DataRow\">apisetu.gov.in:transporttr</span>", children: [15756, 15757, 15775], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:04.669Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:04.669Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Tripura, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transporttr.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transporttr, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:04.669Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transporttr/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:04.669Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:10.789Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:10.789Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["State Transport Department, Telangana"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410693, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportts"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15788], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15780, 15781, 15782, 15783, 15784, 15785, 15786, 15787, 15789], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: State Transport Department, Telangana\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportts\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:10.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15779, 15790, 15791, 15792, 15793, 15794], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:10.789Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:State Transport Department, Telangana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportts.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportts, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:10.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:10.789Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15795], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:10.789Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:State Transport Department, Telangana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportts.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportts, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:10.789Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportts: DataRow\">apisetu.gov.in:transportts</span>", children: [15777, 15778, 15796], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:10.789Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:10.789Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:State Transport Department, Telangana, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportts.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportts, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:10.789Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportts/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:10.789Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:16.761Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:16.761Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Uttarakhand"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410694, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportuk"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15809], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15801, 15802, 15803, 15804, 15805, 15806, 15807, 15808, 15810], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Uttarakhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportuk\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:16.761Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15800, 15811, 15812, 15813, 15814, 15815], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:16.761Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:16.761Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:16.761Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15816], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:16.761Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:16.761Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportuk: DataRow\">apisetu.gov.in:transportuk</span>", children: [15798, 15799, 15817], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:16.761Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:16.761Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:16.761Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportuk/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:16.761Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:23.402Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:23.402Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, Uttar Pradesh"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410695, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportup"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15830], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15822, 15823, 15824, 15825, 15826, 15827, 15828, 15829, 15831], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportup\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:23.402Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15821, 15832, 15833, 15834, 15835, 15836], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:23.402Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:23.402Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:23.402Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15837], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:23.402Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:23.402Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportup: DataRow\">apisetu.gov.in:transportup</span>", children: [15819, 15820, 15838], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:23.402Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:23.402Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportup.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportup, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:23.402Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportup/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:23.402Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:29.474Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:29.474Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\">Driving License (DL) and Vehicle Regi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Transport Department, West Bengal"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410696, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["transportwb"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15851], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15843, 15844, 15845, 15846, 15847, 15848, 15849, 15850, 15852], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Transport Department, West Bengal\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: transportwb\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Driving License<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:29.474Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15842, 15853, 15854, 15855, 15856, 15857], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:29.474Z\ninfo: { description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, West Bengal, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportwb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportwb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:29.474Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:29.474Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15858], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:29.474Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, West Bengal, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportwb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportwb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:29.474Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:transportwb: DataRow\">apisetu.gov.in:transportwb</span>", children: [15840, 15841, 15859], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:29.474Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:29.474Z, info:{ description:Driving License (DL) and Vehicle Registration Certificate (RC) of the State, as available on Parivahan Sewa (http://parivahan.co.in/) of Ministry of Road Transport and Highways, are available on DigiLocker. Citizens can pull these documents into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Transport Department, West Bengal, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/transportwb.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:transportwb, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:29.474Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/transportwb/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:29.474Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:35.353Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:35.353Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Uttarakhand Board of School Education, Ramnagar (http://ubse.uk.gov.in/) has made available Class X (2018) & Class XII (2018) mark sheet-cum-certificate and migration certificates, which can be pulled by students into their DigiLocker accounts.\">Uttarakhand Board of School Education<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Uttarakhand State Board of School Education, Uttarakhand\">Uttarakhand State Board of School Edu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410697, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ubseuk"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15872], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15864, 15865, 15866, 15867, 15868, 15869, 15870, 15871, 15873], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Uttarakhand Board of School Education, Ramnagar (http://ubse.uk.gov.in/) has made available Class X (2018) & Class XII (2018) mark sheet-cum-certificate and migration certificates, which can be pulled by students into their DigiLocker accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Uttarakhand State Board of School Education, Uttarakhand\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ubseuk\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Uttarakhand Boa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:35.353Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15863, 15874, 15875, 15876, 15877, 15878], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:35.353Z\ninfo: { description:Uttarakhand Board of School Education, Ramnagar (http://ubse.uk.gov.in/) has made available Class X (2018) & Class XII (2018) mark sheet-cum-certificate and migration certificates, which can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Uttarakhand State Board of School Education, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ubseuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ubseuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:35.353Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:35.353Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15879], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:35.353Z, info:{ description:Uttarakhand Board of School Education, Ramnagar (http://ubse.uk.gov.in/) has made available Class X (2018) & Class XII (2018) mark sheet-cum-certificate and migration certificates, which can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Uttarakhand State Board of School Education, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ubseuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ubseuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:35.353Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ubseuk: DataRow\">apisetu.gov.in:ubseuk</span>", children: [15861, 15862, 15880], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:35.353Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:35.353Z, info:{ description:Uttarakhand Board of School Education, Ramnagar (http://ubse.uk.gov.in/) has made available Class X (2018) & Class XII (2018) mark sheet-cum-certificate and migration certificates, which can be pulled by students into their DigiLocker accounts., termsOfService:https://apisetu.gov.in/terms.php, title:Uttarakhand State Board of School Education, Uttarakhand, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ubseuk.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ubseuk, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:35.353Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ubseuk/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:35.353Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:40.994Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:40.994Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["APIs provided by UCO Bank."] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["UCO Bank"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410698, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["ucobank"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15893], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15885, 15886, 15887, 15888, 15889, 15890, 15891, 15892, 15894], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs provided by UCO Bank.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: UCO Bank\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: ucobank\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs provided b<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:40.994Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15884, 15895, 15896, 15897, 15898, 15899], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:40.994Z\ninfo: { description:APIs provided by UCO Bank., termsOfService:https://apisetu.gov.in/terms.php, title:UCO Bank, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ucobank.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ucobank, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:40.994Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:40.994Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15900], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:40.994Z, info:{ description:APIs provided by UCO Bank., termsOfService:https://apisetu.gov.in/terms.php, title:UCO Bank, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ucobank.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ucobank, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:40.994Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:ucobank: DataRow\">apisetu.gov.in:ucobank</span>", children: [15882, 15883, 15901], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:40.994Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:40.994Z, info:{ description:APIs provided by UCO Bank., termsOfService:https://apisetu.gov.in/terms.php, title:UCO Bank, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/ucobank.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:ucobank, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:40.994Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/ucobank/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:40.994Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:52.895Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:52.895Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"United India Insurance Co. Ltd. is a Public Sector General Insurance Company incorporated in 1938, having its presence all over India providing risk cover to 1.74 Crore policyholders. General Insurance Policies such as Motor, Health, Personal Accident, Travel, e.t.c issued by United India Insurance Co. Ltd. (https://uiic.co.in/) are available to be downloaded by citizens of India to their DigiLocker account.\">United India Insurance Co. Ltd. is a <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["United India Insurance Company Limited"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410699, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["uiic"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15914], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15906, 15907, 15908, 15909, 15910, 15911, 15912, 15913, 15915], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: United India Insurance Co. Ltd. is a Public Sector General Insurance Company incorporated in 1938, having its presence all over India providing risk cover to 1.74 Crore policyholders. General Insurance Policies such as Motor, Health, Personal Accident, Travel, e.t.c issued by United India Insurance Co. Ltd. (https://uiic.co.in/) are available to be downloaded by citizens of India to their DigiLocker account.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: United India Insurance Company Limited\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: uiic\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>United India In<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:52.895Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15905, 15916, 15917, 15918, 15919, 15920], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:52.895Z\ninfo: { description:United India Insurance Co. Ltd. is a Public Sector General Insurance Company incorporated in 1938, having its presence all over India providing risk cover to 1.74 Crore policyholders. General Insurance Policies such as Motor, Health, Personal Accident, Travel, e.t.c issued by United India Insurance Co. Ltd. (https://uiic.co.in/) are available to be downloaded by citizens of India to their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:United India Insurance Company Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/uiic.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:uiic, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:52.895Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:52.895Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15921], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:52.895Z, info:{ description:United India Insurance Co. Ltd. is a Public Sector General Insurance Company incorporated in 1938, having its presence all over India providing risk cover to 1.74 Crore policyholders. General Insurance Policies such as Motor, Health, Personal Accident, Travel, e.t.c issued by United India Insurance Co. Ltd. (https://uiic.co.in/) are available to be downloaded by citizens of India to their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:United India Insurance Company Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/uiic.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:uiic, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:52.895Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:uiic: DataRow\">apisetu.gov.in:uiic</span>", children: [15903, 15904, 15922], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:52.895Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:52.895Z, info:{ description:United India Insurance Co. Ltd. is a Public Sector General Insurance Company incorporated in 1938, having its presence all over India providing risk cover to 1.74 Crore policyholders. General Insurance Policies such as Motor, Health, Personal Accident, Travel, e.t.c issued by United India Insurance Co. Ltd. (https://uiic.co.in/) are available to be downloaded by citizens of India to their DigiLocker account., termsOfService:https://apisetu.gov.in/terms.php, title:United India Insurance Company Limited, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/uiic.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:uiic, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:52.895Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/uiic/3.0.0/openapi.json, swaggerYamlUrl... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:52.895Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:58.425Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:58.425Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of High School and Intermediate Education, Allahabad (https://upmsp.edu.in) has made available Class X & Class XII (2013-2017) results, as declared on http://upresults.nic.in, in DigiLocker, which can be pulled by students into their accounts.\">Board of High School and Intermediate<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"UP State Board of High School and Intermediate Education, Uttar Pradesh\">UP State Board of High School and Int<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410700, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["upmsp"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15935], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15927, 15928, 15929, 15930, 15931, 15932, 15933, 15934, 15936], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of High School and Intermediate Education, Allahabad (https://upmsp.edu.in) has made available Class X & Class XII (2013-2017) results, as declared on http://upresults.nic.in, in DigiLocker, which can be pulled by students into their accounts.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: UP State Board of High School and Intermediate Education, Uttar Pradesh\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: upmsp\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of High S<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:24:58.425Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15926, 15937, 15938, 15939, 15940, 15941], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:58.425Z\ninfo: { description:Board of High School and Intermediate Education, Allahabad (https://upmsp.edu.in) has made available Class X & Class XII (2013-2017) results, as declared on http://upresults.nic.in, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Board of High School and Intermediate Education, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/upmsp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:upmsp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:24:58.425Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:58.425Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15942], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:24:58.425Z, info:{ description:Board of High School and Intermediate Education, Allahabad (https://upmsp.edu.in) has made available Class X & Class XII (2013-2017) results, as declared on http://upresults.nic.in, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Board of High School and Intermediate Education, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/upmsp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:upmsp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:58.425Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:upmsp: DataRow\">apisetu.gov.in:upmsp</span>", children: [15924, 15925, 15943], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:24:58.425Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:24:58.425Z, info:{ description:Board of High School and Intermediate Education, Allahabad (https://upmsp.edu.in) has made available Class X & Class XII (2013-2017) results, as declared on http://upresults.nic.in, in DigiLocker, which can be pulled by students into their accounts., termsOfService:https://apisetu.gov.in/terms.php, title:UP State Board of High School and Intermediate Education, Uttar Pradesh, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/upmsp.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:upmsp, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:24:58.425Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/upmsp/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:24:58.425Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:04.110Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:04.110Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Vocational Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available VHSE Marklist of MARCH 2020, which can be pulled by students into their Digilocker accounts\">Board of Vocational Higher Secondary <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Board of Vocational Higher Secondary Examinations, Kerala\">Board of Vocational Higher Secondary <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410701, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["vhseker"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15956], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15948, 15949, 15950, 15951, 15952, 15953, 15954, 15955, 15957], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Board of Vocational Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available VHSE Marklist of MARCH 2020, which can be pulled by students into their Digilocker accounts\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Board of Vocational Higher Secondary Examinations, Kerala\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: vhseker\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Board of Vocati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:04.110Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15947, 15958, 15959, 15960, 15961, 15962], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:25:04.110Z\ninfo: { description:Board of Vocational Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available VHSE Marklist of MARCH 2020, which can be pulled by students into their Digilocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Board of Vocational Higher Secondary Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vhseker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vhseker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:25:04.110Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:25:04.110Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15963], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:25:04.110Z, info:{ description:Board of Vocational Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available VHSE Marklist of MARCH 2020, which can be pulled by students into their Digilocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Board of Vocational Higher Secondary Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vhseker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vhseker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:25:04.110Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:vhseker: DataRow\">apisetu.gov.in:vhseker</span>", children: [15945, 15946, 15964], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:25:04.110Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:25:04.110Z, info:{ description:Board of Vocational Higher Secondary Examinations, Directorate of General Education, Government of Kerala has made available VHSE Marklist of MARCH 2020, which can be pulled by students into their Digilocker accounts, termsOfService:https://apisetu.gov.in/terms.php, title:Board of Vocational Higher Secondary Examinations, Kerala, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vhseker.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vhseker, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:25:04.110Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vhseker/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:25:04.110Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:10.031Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:10.031Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Veer Surendra Sai University Of Technology, Odisha (http://vssut.ac.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year's 2014-2019 is made available by Veer Surendra Sai University Of Technology.\">Veer Surendra Sai University Of Techn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://apisetu.gov.in/terms.php"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Veer Surendra Sai University Of Technology\">Veer Surendra Sai University Of Techn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410702, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apisetu.gov.in"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["vssut"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15977], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15969, 15970, 15971, 15972, 15973, 15974, 15975, 15976, 15978], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Veer Surendra Sai University Of Technology, Odisha (http://vssut.ac.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year's 2014-2019 is made available by Veer Surendra Sai University Of Technology.\ntermsOfService: https://apisetu.gov.in/terms.php\ntitle: Veer Surendra Sai University Of Technology\nversion: 3.0.0\nx-apisguru-categories: [open_data]\nx-origin: format url version\n 0 openapi https://apisetu.gov.in/api_specificat... 3.0\n\nx-providerName: apisetu.gov.in\nx-serviceName: vssut\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Veer Surendra S<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-02-07T16:25:10.031Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.json\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiset<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"3.0.0: DataRow\">3.0.0</span>", children: [15968, 15979, 15980, 15981, 15982, 15983], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:25:10.031Z\ninfo: { description:Veer Surendra Sai University Of Technology, Odisha (http://vssut.ac.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year's 2014-2019 is made available by Veer Surendra Sai University Of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Veer Surendra Sai University Of Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vssut.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vssut, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-02-07T16:25:10.031Z\nswaggerUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:25:10.031Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [15984], rightAlign: false, values: ["<span class=\"formatted\" title=\"3.0.0: { added:2021-02-07T16:25:10.031Z, info:{ description:Veer Surendra Sai University Of Technology, Odisha (http://vssut.ac.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year's 2014-2019 is made available by Veer Surendra Sai University Of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Veer Surendra Sai University Of Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vssut.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vssut, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:25:10.031Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">3.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apisetu.gov.in:vssut: DataRow\">apisetu.gov.in:vssut</span>", children: [15966, 15967, 15985], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-07T16:25:10.031Z\npreferred: 3.0.0\nversions: { 3.0.0:{ added:2021-02-07T16:25:10.031Z, info:{ description:Veer Surendra Sai University Of Technology, Odisha (http://vssut.ac.in) is issuing Degree certificates through DigiLocker. These can be pulled by students into their DigiLocker accounts. Currently, data for the year's 2014-2019 is made available by Veer Surendra Sai University Of Technology., termsOfService:https://apisetu.gov.in/terms.php, title:Veer Surendra Sai University Of Technology, version:3.0.0, x-apisguru-categories:[open_data], x-origin:[1 x 3] { format:openapi, url:https://apisetu.gov.in/api_specification_v8/vssut.yaml, version:3.0 }, x-providerName:apisetu.gov.in, x-serviceName:vssut, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-02-07T16:25:10.031Z, swaggerUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apisetu.gov.in/vssut/3.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-07T16:25:10.031Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-06T08:41:31.895Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-06T08:41:31.895Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Domain API (WHOIS, Check, Batch)"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Bulk WHOIS API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [15994], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410703, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apispot.io"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["whois"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [15990, 15991, 15992, 15993, 15995, 15996, 15997, 15998], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Domain API (WHOIS, Check, Batch)\ntitle: Bulk WHOIS API\nversion: 1.0\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg }\nx-origin: format url version\n 0 openapi https://apispot.io/static/whois.yml 3.0\n\nx-providerName: apispot.io\nx-serviceName: whois\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Domain API (WHO<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.json\">https://api.apis.guru/v2/specs/apispo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.yaml\">https://api.apis.guru/v2/specs/apispo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"1.0: DataRow\">1.0</span>", children: [15989, 15999, 16000, 16001, 16002, 16003], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-06T08:41:31.895Z\ninfo: { description:Domain API (WHOIS, Check, Batch), title:Bulk WHOIS API, version:1.0, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://apispot.io/static/whois.yml, version:3.0 }, x-providerName:apispot.io, x-serviceName:whois }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-06T08:41:31.895Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16004], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0: { added:2021-06-06T08:41:31.895Z, info:{ description:Domain API (WHOIS, Check, Batch), title:Bulk WHOIS API, version:1.0, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://apispot.io/static/whois.yml, version:3.0 }, x-providerName:apispot.io, x-serviceName:whois }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-06T0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apispot.io:whois: DataRow\">apispot.io:whois</span>", children: [15987, 15988, 16005], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-06T08:41:31.895Z\npreferred: 1.0\nversions: { 1.0:{ added:2021-06-06T08:41:31.895Z, info:{ description:Domain API (WHOIS, Check, Batch), title:Bulk WHOIS API, version:1.0, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_s3.amazonaws.com_rapidapi-prod-user_e7a9c6f8-f01f-4dca-8fda-68f7424ad817.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://apispot.io/static/whois.yml, version:3.0 }, x-providerName:apispot.io, x-serviceName:whois }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apispot.io/whois/1.0/openapi.yaml, openapiVer:3.0.2 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-06T08:41:31.895Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-16T10:21:02.294Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1.1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-16T10:21:02.294Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay Inc,"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ebay"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16010, 16011], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay Inc,\nx-twitter: ebay\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay Inc,<span class=\"structural\">, </span><span class=\"structural\">x-twitter: </span>ebay<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<span class="tablenote"><b>Note:</b> This is a <a href="https://developer.ebay.com/api-docs/static/versioning.html#limited" target="_blank"> <img src="/cms/img/docs/partners-api.svg" class="legend-icon partners-icon" title="Limited Release" alt="Limited Release" />(Limited Release)</a> API available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user's account profile information. It can be used to let users log into your app or site using eBay, which frees you from needing to store and protect user's PII (Personal Identifiable Information) data.\"><span class="tablenote"><b>Note:</b> <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay API License Agreement"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://go.developer.ebay.com/api-license-agreement\">https://go.developer.ebay.com/api-lic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16014, 16015], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay API License Agreement\nurl: https://go.developer.ebay.com/api-license-agreement\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay API License Agre<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Identity API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1.1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16020, 16021], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410704, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apiz.ebay.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["commerce-identity"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16012, 16013, 16016, 16017, 16018, 16019, 16022, 16023, 16024, 16025], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:eBay Inc,, x-twitter:ebay }\ndescription: <span class="tablenote"><b>Note:</b> This is a <a href="https://developer.ebay.com/api-docs/static/versioning.html#limited" target="_blank"> <img src="/cms/img/docs/partners-api.svg" class="legend-icon partners-icon" title="Limited Release" alt="Limited Release" />(Limited Release)</a> API available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user's account profile information. It can be used to let users log into your app or site using eBay, which frees you from needing to store and protect user's PII (Personal Identifiable Information) data.\nlicense: { name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }\ntitle: Identity API\nversion: v1.1.0\nx-apisguru-categories: [ecommerce]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://developer.ebay.com/api-docs/m... 3.0\n\nx-providerName: apiz.ebay.com\nx-serviceName: commerce-identity\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.json\">https://api.apis.guru/v2/specs/apiz.e<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiz.e<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"v1.1.0: DataRow\">v1.1.0</span>", children: [16009, 16026, 16027, 16028, 16029, 16030], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-16T10:21:02.294Z\ninfo: { contact:{ name:eBay Inc,, x-twitter:ebay }, description:<span class="tablenote"><b>Note:</b> This is a <a href="https://developer.ebay.com/api-docs/static/versioning.html#limited" target="_blank"> <img src="/cms/img/docs/partners-api.svg" class="legend-icon partners-icon" title="Limited Release" alt="Limited Release" />(Limited Release)</a> API available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user's account profile information. It can be used to let users log into your app or site using eBay, which frees you from needing to store and protect user's PII (Personal Identifiable Information) data., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Identity API, version:v1.1.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/commerce/identity/openapi/3/commerce_identity_v1_oas3.json, version:3.0 }, x-providerName:apiz.ebay.com, x-serviceName:commerce-identity }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-16T10:21:02.294Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16031], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1.1.0: { added:2020-07-16T10:21:02.294Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:<span class="tablenote"><b>Note:</b> This is a <a href="https://developer.ebay.com/api-docs/static/versioning.html#limited" target="_blank"> <img src="/cms/img/docs/partners-api.svg" class="legend-icon partners-icon" title="Limited Release" alt="Limited Release" />(Limited Release)</a> API available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user's account profile information. It can be used to let users log into your app or site using eBay, which frees you from needing to store and protect user's PII (Personal Identifiable Information) data., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Identity API, version:v1.1.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:..., updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/commerce-identity/v1.1.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1.1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apiz.ebay.com:commerce-identity: DataRow\">apiz.ebay.com:commerce-identity</span>", children: [16007, 16008, 16032], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-16T10:21:02.294Z\npreferred: v1.1.0\nversions: { v1.1.0:{ added:2020-07-16T10:21:02.294Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:<span class="tablenote"><b>Note:</b> This is a <a href="https://developer.ebay.com/api-docs/static/versioning.html#limited" target="_blank"> <img src="/cms/img/docs/partners-api.svg" class="legend-icon partners-icon" title="Limited Release" alt="Limited Release" />(Limited Release)</a> API available only to select developers approved by business units.</span><br /><br />Retrieves the authenticated user's account profile information. It can be used to let users log into your app or site using eBay, which frees you from needing to store and protect user's PII (Personal Identifiable Information) data., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:Identity API, version:v1.1.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-16T10:21:02.294Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-16T10:07:31.731Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.9.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-16T10:07:31.731Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay Inc,"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["ebay"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16037, 16038], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay Inc,\nx-twitter: ebay\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay Inc,<span class=\"structural\">, </span><span class=\"structural\">x-twitter: </span>ebay<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This API is used to retrieve seller payouts and monetary transaction details related to those payouts.\">This API is used to retrieve seller p<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["eBay API License Agreement"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://go.developer.ebay.com/api-license-agreement\">https://go.developer.ebay.com/api-lic<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16041, 16042], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: eBay API License Agreement\nurl: https://go.developer.ebay.com/api-license-agreement\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBay API License Agre<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["eBay Finances API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.9.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16047, 16048], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410705, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apiz.ebay.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sell-finances"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16039, 16040, 16043, 16044, 16045, 16046, 16049, 16050, 16051, 16052], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:eBay Inc,, x-twitter:ebay }\ndescription: This API is used to retrieve seller payouts and monetary transaction details related to those payouts.\nlicense: { name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }\ntitle: eBay Finances API\nversion: 1.9.0\nx-apisguru-categories: [ecommerce]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://developer.ebay.com/api-docs/m... 3.0\n\nx-providerName: apiz.ebay.com\nx-serviceName: sell-finances\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>eBa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-30T09:57:47.461Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.json\">https://api.apis.guru/v2/specs/apiz.e<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.yaml\">https://api.apis.guru/v2/specs/apiz.e<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.9.0: DataRow\">1.9.0</span>", children: [16036, 16053, 16054, 16055, 16056, 16057], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-16T10:07:31.731Z\ninfo: { contact:{ name:eBay Inc,, x-twitter:ebay }, description:This API is used to retrieve seller payouts and monetary transaction details related to those payouts., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:eBay Finances API, version:1.9.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/finances/openapi/3/sell_finances_v1_oas3.json, version:3.0 }, x-providerName:apiz.ebay.com, x-serviceName:sell-finances }\nupdated: 2021-06-30T09:57:47.461Z\nswaggerUrl: https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-16T10:07:31.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16058], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.9.0: { added:2020-07-16T10:07:31.731Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:This API is used to retrieve seller payouts and monetary transaction details related to those payouts., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:eBay Finances API, version:1.9.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/finances/openapi/3/sell_finances_v1_oas3.json, version:3.0 }, x-providerName:apiz.ebay.com, x-serviceName:sell-finances }, updated:2021-06-30T09:57:47.461Z, swaggerUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.9.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-16<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apiz.ebay.com:sell-finances: DataRow\">apiz.ebay.com:sell-finances</span>", children: [16034, 16035, 16059], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-16T10:07:31.731Z\npreferred: 1.9.0\nversions: { 1.9.0:{ added:2020-07-16T10:07:31.731Z, info:{ contact:{ name:eBay Inc,, x-twitter:ebay }, description:This API is used to retrieve seller payouts and monetary transaction details related to those payouts., license:{ name:eBay API License Agreement, url:https://go.developer.ebay.com/api-license-agreement }, title:eBay Finances API, version:1.9.0, x-apisguru-categories:[ecommerce], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_ebay_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://developer.ebay.com/api-docs/master/sell/finances/openapi/3/sell_finances_v1_oas3.json, version:3.0 }, x-providerName:apiz.ebay.com, x-serviceName:sell-finances }, updated:2021-06-30T09:57:47.461Z, swaggerUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apiz.ebay.com/sell-finances/1.9.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-16T10:07:31.731Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v0.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-07-10T08:57:08.681Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["microsoft"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16064], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: microsoft\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>microsoft<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Microsoft Visual Studio App Center API"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["App Center Client"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v0.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16070], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410706, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["appcenter.ms"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16065, 16066, 16067, 16068, 16069, 16071, 16072, 16073], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:microsoft }\ndescription: Microsoft Visual Studio App Center API\ntitle: App Center Client\nversion: v0.1\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png }\nx-origin: format url version\n 0 swagger https://api.appcenter.ms/preview/swag... 2.0\n\nx-providerName: appcenter.ms\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>micr<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-02T08:20:08.766Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.json\">https://api.apis.guru/v2/specs/appcen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.yaml\">https://api.apis.guru/v2/specs/appcen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"v0.1: DataRow\">v0.1</span>", children: [16063, 16074, 16075, 16076, 16077, 16078], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\ninfo: { contact:{ x-twitter:microsoft }, description:Microsoft Visual Studio App Center API, title:App Center Client, version:v0.1, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://api.appcenter.ms/preview/swagger.json, version:2.0 }, x-providerName:appcenter.ms }\nupdated: 2021-08-02T08:20:08.766Z\nswaggerUrl: https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16079], rightAlign: false, values: ["<span class=\"formatted\" title=\"v0.1: { added:2020-07-10T08:57:08.681Z, info:{ contact:{ x-twitter:microsoft }, description:Microsoft Visual Studio App Center API, title:App Center Client, version:v0.1, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://api.appcenter.ms/preview/swagger.json, version:2.0 }, x-providerName:appcenter.ms }, updated:2021-08-02T08:20:08.766Z, swaggerUrl:https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v0.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"appcenter.ms: DataRow\">appcenter.ms</span>", children: [16061, 16062, 16080], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-07-10T08:57:08.681Z\npreferred: v0.1\nversions: { v0.1:{ added:2020-07-10T08:57:08.681Z, info:{ contact:{ x-twitter:microsoft }, description:Microsoft Visual Studio App Center API, title:App Center Client, version:v0.1, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png }, x-origin:[1 x 3] { format:swagger, url:https://api.appcenter.ms/preview/swagger.json, version:2.0 }, x-providerName:appcenter.ms }, updated:2021-08-02T08:20:08.766Z, swaggerUrl:https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/appcenter.ms/v0.1/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-07-10T08:57:08.681Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:42:31.544Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.4.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-02-04T07:42:31.544Z"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["App Store Connect API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.4.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410707, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-platform: String\">x-platform</span>", children: [], rightAlign: false, values: ["app_store_connect_api"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apple.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["app-store-connect"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16092], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16085, 16086, 16087, 16088, 16089, 16090, 16091, 16093], rightAlign: false, values: ["<span class=\"formatted\" title=\"title: App Store Connect API\nversion: 1.4.1\nx-apisguru-categories: [developer_tools]\nx-origin: format url version\n 0 openapi app-store-connect-openapi-specificati... 3.0\n\nx-platform: app_store_connect_api\nx-providerName: apple.com\nx-serviceName: app-store-connect\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">title: </span>App Store Connect API<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["App Store Connect API Documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://developer.apple.com/documentation/appstoreconnectapi\">https://developer.apple.com/documenta<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16095, 16096], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: App Store Connect API Documentation\nurl: https://developer.apple.com/documentation/appstoreconnectapi\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>App Store Conn<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-09T09:26:30.628Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.json\">https://api.apis.guru/v2/specs/apple.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.yaml\">https://api.apis.guru/v2/specs/apple.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.4.1: DataRow\">1.4.1</span>", children: [16084, 16094, 16097, 16098, 16099, 16100, 16101], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:42:31.544Z\ninfo: { title:App Store Connect API, version:1.4.1, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:app-store-connect-openapi-specification.json, version:3.0 }, x-platform:app_store_connect_api, x-providerName:apple.com, x-serviceName:app-store-connect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nexternalDocs: { description:App Store Connect API Documentation, url:https://developer.apple.com/documentation/appstoreconnectapi }\nupdated: 2021-06-09T09:26:30.628Z\nswaggerUrl: https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:42:31.544Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16102], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.4.1: { added:2021-02-04T07:42:31.544Z, info:{ title:App Store Connect API, version:1.4.1, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:app-store-connect-openapi-specification.json, version:3.0 }, x-platform:app_store_connect_api, x-providerName:apple.com, x-serviceName:app-store-connect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, externalDocs:{ description:App Store Connect API Documentation, url:https://developer.apple.com/documentation/appstoreconnectapi }, updated:2021-06-09T09:26:30.628Z, swaggerUrl:https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.4.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apple.com:app-store-connect: DataRow\">apple.com:app-store-connect</span>", children: [16082, 16083, 16103], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-02-04T07:42:31.544Z\npreferred: 1.4.1\nversions: { 1.4.1:{ added:2021-02-04T07:42:31.544Z, info:{ title:App Store Connect API, version:1.4.1, x-apisguru-categories:[developer_tools], x-origin:[1 x 3] { format:openapi, url:app-store-connect-openapi-specification.json, version:3.0 }, x-platform:app_store_connect_api, x-providerName:apple.com, x-serviceName:app-store-connect, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, externalDocs:{ description:App Store Connect API Documentation, url:https://developer.apple.com/documentation/appstoreconnectapi }, updated:2021-06-09T09:26:30.628Z, swaggerUrl:https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apple.com/app-store-connect/1.4.1/openapi.yaml, openapiVer:3.0.1 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-02-04T07:42:31.544Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-09T09:30:43.016Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.2"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-06-09T09:30:43.016Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Siri for Developers"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developer.apple.com/siri/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16108, 16109], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Siri for Developers\nurl: https://developer.apple.com/siri/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Siri for Developers<span class=\"structural\">, </span><span class=\"structural\">url: </span>h<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["SiriKit Cloud Media"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.2"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"media\"><span class=\"structural\">[</span>media<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410708, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-platform: String\">x-platform</span>", children: [], rightAlign: false, values: ["sirikit_media_api"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apple.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["sirikit-cloud-media"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16118], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117, 16119], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:Siri for Developers, url:https://developer.apple.com/siri/ }\ntitle: SiriKit Cloud Media\nversion: 1.0.2\nx-apisguru-categories: [media]\nx-origin: format url version\n 0 openapi sirikit-cloud-media.json 3.0\n\nx-platform: sirikit_media_api\nx-providerName: apple.com\nx-serviceName: sirikit-cloud-media\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Sir<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-09T09:36:07.486Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.json\">https://api.apis.guru/v2/specs/apple.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.yaml\">https://api.apis.guru/v2/specs/apple.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.0.2: DataRow\">1.0.2</span>", children: [16107, 16120, 16121, 16122, 16123, 16124], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-09T09:30:43.016Z\ninfo: { contact:{ name:Siri for Developers, url:https://developer.apple.com/siri/ }, title:SiriKit Cloud Media, version:1.0.2, x-apisguru-categories:[media], x-origin:[1 x 3] { format:openapi, url:sirikit-cloud-media.json, version:3.0 }, x-platform:sirikit_media_api, x-providerName:apple.com, x-serviceName:sirikit-cloud-media, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-06-09T09:36:07.486Z\nswaggerUrl: https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-09T09:30:43.016Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16125], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.2: { added:2021-06-09T09:30:43.016Z, info:{ contact:{ name:Siri for Developers, url:https://developer.apple.com/siri/ }, title:SiriKit Cloud Media, version:1.0.2, x-apisguru-categories:[media], x-origin:[1 x 3] { format:openapi, url:sirikit-cloud-media.json, version:3.0 }, x-platform:sirikit_media_api, x-providerName:apple.com, x-serviceName:sirikit-cloud-media, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-06-09T09:36:07.486Z, swaggerUrl:https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.2: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-09<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apple.com:sirikit-cloud-media: DataRow\">apple.com:sirikit-cloud-media</span>", children: [16105, 16106, 16126], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-06-09T09:30:43.016Z\npreferred: 1.0.2\nversions: { 1.0.2:{ added:2021-06-09T09:30:43.016Z, info:{ contact:{ name:Siri for Developers, url:https://developer.apple.com/siri/ }, title:SiriKit Cloud Media, version:1.0.2, x-apisguru-categories:[media], x-origin:[1 x 3] { format:openapi, url:sirikit-cloud-media.json, version:3.0 }, x-platform:sirikit_media_api, x-providerName:apple.com, x-serviceName:sirikit-cloud-media, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, updated:2021-06-09T09:36:07.486Z, swaggerUrl:https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apple.com/sirikit-cloud-media/1.0.2/openapi.yaml, openapiVer:3.0.1 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-06-09T09:30:43.016Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-03-31T06:21:07.027Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2021.1.01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-03-31T06:21:07.027Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@apptigent.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Customer Support"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.apptigent.com/help/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16131, 16132, 16133], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@apptigent.com\nname: Customer Support\nurl: https://www.apptigent.com/help/\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@apptigent.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit.\">Apptigent PowerTools Developer Editio<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["PowerTools Developer"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2021.1.01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-ibm-name: String\">x-ibm-name</span>", children: [], rightAlign: false, values: ["powertools-developer"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16140], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410709, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["apptigent.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16134, 16135, 16136, 16137, 16138, 16139, 16141, 16142, 16143], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@apptigent.com, name:Customer Support, url:https://www.apptigent.com/help/ }\ndescription: Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit.\ntitle: PowerTools Developer\nversion: 2021.1.01\nx-apisguru-categories: [developer_tools]\nx-ibm-name: powertools-developer\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png }\nx-origin: format url version\n 0 openapi https://portal.apptigent.com/sites/po... 3.0\n\nx-providerName: apptigent.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.json\">https://api.apis.guru/v2/specs/apptig<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.yaml\">https://api.apis.guru/v2/specs/apptig<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"2021.1.01: DataRow\">2021.1.01</span>", children: [16130, 16144, 16145, 16146, 16147, 16148], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-03-31T06:21:07.027Z\ninfo: { contact:{ email:support@apptigent.com, name:Customer Support, url:https://www.apptigent.com/help/ }, description:Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit., title:PowerTools Developer, version:2021.1.01, x-apisguru-categories:[developer_tools], x-ibm-name:powertools-developer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png }, x-origin:[1 x 3] { format:openapi, url:https://portal.apptigent.com/sites/portal.apptigent.com/files/v3-powertools-developer-2021-1-01.json, version:3.0 }, x-providerName:apptigent.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-03-31T06:21:07.027Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16149], rightAlign: false, values: ["<span class=\"formatted\" title=\"2021.1.01: { added:2021-03-31T06:21:07.027Z, info:{ contact:{ email:support@apptigent.com, name:Customer Support, url:https://www.apptigent.com/help/ }, description:Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit., title:PowerTools Developer, version:2021.1.01, x-apisguru-categories:[developer_tools], x-ibm-name:powertools-developer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png }, x-origin:[1 x 3] { format:openapi, url:https://portal.apptigent.com/sites/portal.apptigent.com/files/v3-powertools-developer-2021-1-01.json, version:3.0 }, x-providerName:apptigent.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/apptigent.com/2021.1.01/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">2021.1.01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"apptigent.com: DataRow\">apptigent.com</span>", children: [16128, 16129, 16150], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-03-31T06:21:07.027Z\npreferred: 2021.1.01\nversions: { 2021.1.01:{ added:2021-03-31T06:21:07.027Z, info:{ contact:{ email:support@apptigent.com, name:Customer Support, url:https://www.apptigent.com/help/ }, description:Apptigent PowerTools Developer Edition is a powerful suite of API endpoints for custom applications running on any stack. Manipulate text, modify collections, format dates and times, convert currency, perform advanced mathematical calculations, shorten URL's, encode strings, convert text to speech, translate content into multiple languages, process images, and more. PowerTools is the ultimate developer toolkit., title:PowerTools Developer, version:2021.1.01, x-apisguru-categories:[developer_tools], x-ibm-name:powertools-developer, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_portal.apptigent.com_sites_portal.apptigent.com_files_api_powertools-developer.png }, x-origin:[1 x 3] { format:openapi, url:https://portal.apptigent.com/sites/portal.apptigent.com/files/v3-powertools-developer-2021-1-01.json, version:3.0 }, x-provide... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-03-31T06:21:07.027Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-01-16T14:46:30.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-01-16T14:46:30.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["team@appveyor.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["AppVeyor Team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.appveyor.com/about/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16155, 16156, 16157], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: team@appveyor.com\nname: AppVeyor Team\nurl: https://www.appveyor.com/about/\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>team@appveyor.com<span class=\"structural\">, </span><span class=\"structural\">n...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AppVeyor is a hosted continuous integration service which runs on Microsoft\nWindows. The AppVeyor REST API provides a RESTful way to interact with the\nAppVeyor service. This includes managing projects, builds, deployments,\nand the teams that build them.\n\nAdditional help and discussion of the AppVeyor REST API is available at\nhttp://help.appveyor.com/discussions\n\nThis Swagger definition is an **unofficial** description of the AppVeyor\nREST API maintained at https://github.com/kevinoid/appveyor-swagger\nPlease report any issues or suggestions for this Swagger definition at\nhttps://github.com/kevinoid/appveyor-swagger/issues/new\n\n#### API Conventions\n\nFields which are missing from update operations (`PUT` requests) are\ntypically reset to their default values. So although most fields are not\ntechnically required, they should usually be specified in practice.\n\">AppVeyor is a hosted continuous integ<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AppVeyor End User License Agreement (EULA)\">AppVeyor End User License Agreement (<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.appveyor.com/eula/"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16160, 16161], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: AppVeyor End User License Agreement (EULA)\nurl: https://www.appveyor.com/eula/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>AppVeyor End User Lic<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.appveyor.com/terms-of-service/\">https://www.appveyor.com/terms-of-ser<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AppVeyor REST API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_www.appveyor.com_assets_img_appveyor-logo-256.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16167], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_www.appveyor.com_assets_img_appveyor-logo-256.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410710, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["appveyor.com"] },
{ name: "<span title=\"x-unofficialSpec: Boolean\">x-unofficialSpec</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16158, 16159, 16162, 16163, 16164, 16165, 16166, 16168, 16169, 16170, 16171], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:team@appveyor.com, name:AppVeyor Team, url:https://www.appveyor.com/about/ }\ndescription: AppVeyor is a hosted continuous integration service which runs on Microsoft\nWindows. The AppVeyor REST API provides a RESTful way to interact with the\nAppVeyor service. This includes managing projects, builds, deployments,\nand the teams that build them.\n\nAdditional help and discussion of the AppVeyor REST API is available at\nhttp://help.appveyor.com/discussions\n\nThis Swagger definition is an **unofficial** description of the AppVeyor\nREST API maintained at https://github.com/kevinoid/appveyor-swagger\nPlease report any issues or suggestions for this Swagger definition at\nhttps://github.com/kevinoid/appveyor-swagger/issues/new\n\n#### API Conventions\n\nFields which are missing from update operations (`PUT` requests) are\ntypically reset to their default values. So although most fields are not\ntechnically required, they should usually be specified in practice.\n\nlicense: { name:AppVeyor End User License Agreement (EULA), url:https://www.appveyor.com/eula/ }\ntermsOfService: https://www.appveyor.com/terms-of-service/\ntitle: AppVeyor REST API\nversion: 1.0.0\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_www.appveyor.com_assets_img_appveyor-logo-256.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/kev... 2.0\n\nx-providerName: appveyor.com\nx-unofficialSpec: true\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>tea<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["AppVeyor REST API Documentation"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.appveyor.com/docs/api/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16173, 16174], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: AppVeyor REST API Documentation\nurl: https://www.appveyor.com/docs/api/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>AppVeyor REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.json\">https://api.apis.guru/v2/specs/appvey<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/appvey<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [16154, 16172, 16175, 16176, 16177, 16178, 16179], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-01-16T14:46:30.000Z\ninfo: { contact:{ email:team@appveyor.com, name:AppVeyor Team, url:https://www.appveyor.com/about/ }, description:AppVeyor is a hosted continuous integration service which runs on Microsoft\nWindows. The AppVeyor REST API provides a RESTful way to interact with the\nAppVeyor service. This includes managing projects, builds, deployments,\nand the teams that build them.\n\nAdditional help and discussion of the AppVeyor REST API is available at\nhttp://help.appveyor.com/discussions\n\nThis Swagger definition is an **unofficial** description of the AppVeyor\nREST API maintained at https://github.com/kevinoid/appveyor-swagger\nPlease report any issues or suggestions for this Swagger definition at\nhttps://github.com/kevinoid/appveyor-swagger/issues/new\n\n#### API Conventions\n\nFields which are missing from update operations (`PUT` requests) are\ntypically reset to their default values. So although most fields are not\ntechnically required, they should usually be specified in practice.\n, license:{ name:AppVeyor End User License Agreement (EULA), url:https://www.appveyor.com/eula/ }, termsOfService:https://www.appveyor.com/terms-of-service/, title:AppVeyor REST API, version:1.0.0, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_www.appveyor.com_assets_img_appveyor-logo-256.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/kevinoid/appveyor-swagger/master/swagger.yaml, version:2.0 }, x-providerName:appveyor.com, x-unofficialSpec:true }\nexternalDocs: { description:AppVeyor REST API Documentation, url:https://www.appveyor.com/docs/api/ }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-01-16T14:46:30.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16180], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2017-01-16T14:46:30.000Z, info:{ contact:{ email:team@appveyor.com, name:AppVeyor Team, url:https://www.appveyor.com/about/ }, description:AppVeyor is a hosted continuous integration service which runs on Microsoft\nWindows. The AppVeyor REST API provides a RESTful way to interact with the\nAppVeyor service. This includes managing projects, builds, deployments,\nand the teams that build them.\n\nAdditional help and discussion of the AppVeyor REST API is available at\nhttp://help.appveyor.com/discussions\n\nThis Swagger definition is an **unofficial** description of the AppVeyor\nREST API maintained at https://github.com/kevinoid/appveyor-swagger\nPlease report any issues or suggestions for this Swagger definition at\nhttps://github.com/kevinoid/appveyor-swagger/issues/new\n\n#### API Conventions\n\nFields which are missing from update operations (`PUT` requests) are\ntypically reset to their default values. So although most fields are not\ntechnically required, they should usually be specified in practice.\n, ..., externalDocs:{ description:AppVeyor REST API Documentation, url:https://www.appveyor.com/docs/api/ }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/appveyor.com/1.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-01-16<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"appveyor.com: DataRow\">appveyor.com</span>", children: [16152, 16153, 16181], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-01-16T14:46:30.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2017-01-16T14:46:30.000Z, info:{ contact:{ email:team@appveyor.com, name:AppVeyor Team, url:https://www.appveyor.com/about/ }, description:AppVeyor is a hosted continuous integration service which runs on Microsoft\nWindows. The AppVeyor REST API provides a RESTful way to interact with the\nAppVeyor service. This includes managing projects, builds, deployments,\nand the teams that build them.\n\nAdditional help and discussion of the AppVeyor REST API is available at\nhttp://help.appveyor.com/discussions\n\nThis Swagger definition is an **unofficial** description of the AppVeyor\nREST API maintained at https://github.com/kevinoid/appveyor-swagger\nPlease report any issues or suggestions for this Swagger definition at\nhttps://github.com/kevinoid/appveyor-swagger/issues/new\n\n#### API Conventions\n\nFields which are missing from update operations (`PUT` requests) are\ntypically reset to their default values. So although most fields are not\ntechnically required, they shoul... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-01-16T14:46:30.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:25.275Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.9.3"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:25.275Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["team@appwrite.io"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Appwrite Team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://appwrite.io/support"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16186, 16187, 16188], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: team@appwrite.io\nname: Appwrite Team\nurl: https://appwrite.io/support\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>team@appwrite.io<span class=\"structural\">, </span><span class=\"structural\">na...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)\">Appwrite backend as a service cuts up<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["BSD-3-Clause"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE\">https://raw.githubusercontent.com/app<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16191, 16192], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: BSD-3-Clause\nurl: https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>BSD-3-Clause<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://appwrite.io/policy/terms"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Appwrite"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.9.3"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/_images_apple.png\">https://api.apis.guru/v2/cache/logo/_<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16198], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/_images_apple.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410711, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["appwrite.io"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["client"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16189, 16190, 16193, 16194, 16195, 16196, 16197, 16199, 16200, 16201, 16202], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }\ndescription: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)\nlicense: { name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }\ntermsOfService: https://appwrite.io/policy/terms\ntitle: Appwrite\nversion: 0.9.3\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/_images_apple.png }\nx-origin: format url version\n 0 openapi https://appwrite.io/specs/open-api3?p... 3.0\n\nx-providerName: appwrite.io\nx-serviceName: client\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>tea<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Full API docs, specs and tutorials"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://appwrite.io/docs"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16204, 16205], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Full API docs, specs and tutorials\nurl: https://appwrite.io/docs\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Full API docs,<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:25.275Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.json\">https://api.apis.guru/v2/specs/appwri<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.yaml\">https://api.apis.guru/v2/specs/appwri<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"0.9.3: DataRow\">0.9.3</span>", children: [16185, 16203, 16206, 16207, 16208, 16209, 16210], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T15:35:25.275Z\ninfo: { contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=client, version:3.0 }, x-providerName:appwrite.io, x-serviceName:client }\nexternalDocs: { description:Full API docs, specs and tutorials, url:https://appwrite.io/docs }\nupdated: 2021-08-12T15:35:25.275Z\nswaggerUrl: https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T15:35:25.275Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16211], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.9.3: { added:2021-08-12T15:35:25.275Z, info:{ contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=client, version:3.0 }, x-providerName:appwrite.io, x-serviceName:client }, externalDocs:{ description:Full API docs, specs and tutorials, url:https://appwrite.io/docs }, updated:2021-08-12T15:35:25.275Z, swaggerUrl:https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/appwrite.io/client/0.9.3/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.9.3: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"appwrite.io:client: DataRow\">appwrite.io:client</span>", children: [16183, 16184, 16212], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T15:35:25.275Z\npreferred: 0.9.3\nversions: { 0.9.3:{ added:2021-08-12T15:35:25.275Z, info:{ contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=client, version:3.0 }, x-providerName:appwrite.io, x-serviceName:client }, externalDocs:{ description:Full API docs, specs and tutorials, ur... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T15:35:25.275Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:06.475Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.9.3"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:06.475Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["team@appwrite.io"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Appwrite Team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://appwrite.io/support"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16217, 16218, 16219], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: team@appwrite.io\nname: Appwrite Team\nurl: https://appwrite.io/support\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>team@appwrite.io<span class=\"structural\">, </span><span class=\"structural\">na...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)\">Appwrite backend as a service cuts up<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["BSD-3-Clause"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE\">https://raw.githubusercontent.com/app<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16222, 16223], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: BSD-3-Clause\nurl: https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>BSD-3-Clause<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://appwrite.io/policy/terms"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Appwrite"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.9.3"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/_images_apple.png\">https://api.apis.guru/v2/cache/logo/_<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16229], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/_images_apple.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410712, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["appwrite.io"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["server"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16220, 16221, 16224, 16225, 16226, 16227, 16228, 16230, 16231, 16232, 16233], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }\ndescription: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)\nlicense: { name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }\ntermsOfService: https://appwrite.io/policy/terms\ntitle: Appwrite\nversion: 0.9.3\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/_images_apple.png }\nx-origin: format url version\n 0 openapi https://appwrite.io/specs/open-api3?p... 3.0\n\nx-providerName: appwrite.io\nx-serviceName: server\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>tea<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Full API docs, specs and tutorials"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://appwrite.io/docs"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16235, 16236], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Full API docs, specs and tutorials\nurl: https://appwrite.io/docs\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Full API docs,<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-12T15:35:06.475Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.json\">https://api.apis.guru/v2/specs/appwri<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.yaml\">https://api.apis.guru/v2/specs/appwri<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"0.9.3: DataRow\">0.9.3</span>", children: [16216, 16234, 16237, 16238, 16239, 16240, 16241], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T15:35:06.475Z\ninfo: { contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=server, version:3.0 }, x-providerName:appwrite.io, x-serviceName:server }\nexternalDocs: { description:Full API docs, specs and tutorials, url:https://appwrite.io/docs }\nupdated: 2021-08-12T15:35:06.475Z\nswaggerUrl: https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T15:35:06.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16242], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.9.3: { added:2021-08-12T15:35:06.475Z, info:{ contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=server, version:3.0 }, x-providerName:appwrite.io, x-serviceName:server }, externalDocs:{ description:Full API docs, specs and tutorials, url:https://appwrite.io/docs }, updated:2021-08-12T15:35:06.475Z, swaggerUrl:https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/appwrite.io/server/0.9.3/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.9.3: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"appwrite.io:server: DataRow\">appwrite.io:server</span>", children: [16214, 16215, 16243], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-08-12T15:35:06.475Z\npreferred: 0.9.3\nversions: { 0.9.3:{ added:2021-08-12T15:35:06.475Z, info:{ contact:{ email:team@appwrite.io, name:Appwrite Team, url:https://appwrite.io/support }, description:Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs), license:{ name:BSD-3-Clause, url:https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE }, termsOfService:https://appwrite.io/policy/terms, title:Appwrite, version:0.9.3, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/_images_apple.png }, x-origin:[1 x 3] { format:openapi, url:https://appwrite.io/specs/open-api3?platform=server, version:3.0 }, x-providerName:appwrite.io, x-serviceName:server }, externalDocs:{ description:Full API docs, specs and tutorials, ur... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-08-12T15:35:06.475Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-24T16:36:17.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-24T16:36:17.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["internetarchive"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16248], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: internetarchive\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>internetarchive<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"API for Internet Archive's Search-related services\n\">API for Internet Archive's Search-rel<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Search Services"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"search\"><span class=\"structural\">[</span>search<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16254], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410713, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["archive.org"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["search"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16249, 16250, 16251, 16252, 16253, 16255, 16256, 16257, 16258], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:internetarchive }\ndescription: API for Internet Archive's Search-related services\n\ntitle: Search Services\nversion: 1.0.0\nx-apisguru-categories: [search]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Arc... 3.0\n\nx-providerName: archive.org\nx-serviceName: search\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>inte<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/archiv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/archiv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [16247, 16259, 16260, 16261, 16262, 16263], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-24T16:36:17.000Z\ninfo: { contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Search-related services\n, title:Search Services, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/search.yaml, version:3.0 }, x-providerName:archive.org, x-serviceName:search }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24T16:36:17.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16264], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2018-02-24T16:36:17.000Z, info:{ contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Search-related services\n, title:Search Services, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/search.yaml, version:3.0 }, x-providerName:archive.org, x-serviceName:search }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"archive.org:search: DataRow\">archive.org:search</span>", children: [16245, 16246, 16265], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-24T16:36:17.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2018-02-24T16:36:17.000Z, info:{ contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Search-related services\n, title:Search Services, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/search.yaml, version:3.0 }, x-providerName:archive.org, x-serviceName:search }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/archive.org/search/1.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24T16:36:17.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-24T16:36:17.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-02-24T16:36:17.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["internetarchive"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16270], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: internetarchive\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>internetarchive<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"API for Internet Archive's Wayback Machine\">API for Internet Archive's Wayback Ma<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Wayback API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"search\"><span class=\"structural\">[</span>search<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16276], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410714, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["archive.org"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["wayback"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16271, 16272, 16273, 16274, 16275, 16277, 16278, 16279, 16280], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:internetarchive }\ndescription: API for Internet Archive's Wayback Machine\ntitle: Wayback API\nversion: 1.0.0\nx-apisguru-categories: [search]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Arc... 3.0\n\nx-providerName: archive.org\nx-serviceName: wayback\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>inte<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/archiv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/archiv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [16269, 16281, 16282, 16283, 16284, 16285], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-24T16:36:17.000Z\ninfo: { contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Wayback Machine, title:Wayback API, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/wayback.json, version:3.0 }, x-providerName:archive.org, x-serviceName:wayback }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24T16:36:17.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16286], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2018-02-24T16:36:17.000Z, info:{ contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Wayback Machine, title:Wayback API, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/wayback.json, version:3.0 }, x-providerName:archive.org, x-serviceName:wayback }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"archive.org:wayback: DataRow\">archive.org:wayback</span>", children: [16267, 16268, 16287], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-02-24T16:36:17.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2018-02-24T16:36:17.000Z, info:{ contact:{ x-twitter:internetarchive }, description:API for Internet Archive's Wayback Machine, title:Wayback API, version:1.0.0, x-apisguru-categories:[search], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_internetarchive_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/ArchiveLabs/api.archive.org/master/swagger/wayback.json, version:3.0 }, x-providerName:archive.org, x-serviceName:wayback }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/archive.org/wayback/1.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-02-24T16:36:17.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-26T17:28:52.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-26T17:28:52.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@art19.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["ART19 Engineering Team"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["art19co"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16292, 16293, 16294], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@art19.com\nname: ART19 Engineering Team\nx-twitter: art19co\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@art19.com<span class=\"structural\">, </span><span class=\"structural\">n...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The ART19 Content API conforms to the [JSON:API specification](http://jsonapi.org).\n\nAPI requests **MUST** use the HTTP Accept header:\n\n`Accept: application/vnd.api+json`\n\nAPI requests **MUST** be authenticated using the HTTP Authorization header:\n\n`Authorization: Token token="your-token", credential="your-credential"`\n\n## General Notes\n\nSome query parameters use unencoded [ and ] characters simply for readability. Defaults, examples, and\npossible values are additionally rendered in double quotes for readability. In practice, query parameters should\nnot have quotes around the values (e.g., `foo=bar` is valid, not `foo="bar"`), and both query parameter keys\nand values must be percent-encoded, per the requirements in [RFC 3986 § 3.4](https://tools.ietf.org/html/rfc3986#section-3.4).\n\n## Rate Limiting\n\nIn order to provide a fair distribution of available resources, all API calls are subject to rate limits.\nIf you exceed the number of API calls per minute granted to your credential, a `429 Too Many Requests`\nerror response will be returned.\n\nIn that case, a `Retry-After` header MAY be included in the response, describing the number of seconds\nafter which a request can be retried.\n\nIf you run into a high number of 429 errors, please reach out to ART19 Support to adjust your rate limit.\n\n### Example\n\nIn the following example the request can be retried after waiting for 21 seconds:\n\n HTTP/1.1 429 Too Many Requests\n Content-Type: text/html\n Retry-After: 21\n\n## Pagination\n\nRequests to collection endpoints **SHOULD** provide pagination parameters.\nSome endpoints **REQUIRE** pagination parameters to be provided.\nWhenever pagination is provided, it **MUST** be valid.\nFailing to provide pagination when it is required or providing wrong or incomplete pagination\nalways results in a `400 Bad Request` error response.\n\nThe page numbering starts with `1` and the maximum page size (if not otherwise documented\non an endpoint) is `100`. Pagination **MUST NOT** be specified if requesting a list of IDs (using an `ids[]` parameter).\n\nProviding invalid values for page number or page size, as well as providing only a page number or only a page size,\nis considered an error. Pagination is provided like this:\n\n`page[number]=1&page[size]=25`\n\nResponses conform to the [JSON:API specification's pagination section](https://jsonapi.org/format/#fetching-pagination)\nby including pagination links. Your requested page size will be carried into the pagination links.\n\n## Sorting\n\nRequests to collection endpoints usually accept a `sort` parameter. Please refer to the\n[JSON:API Specification's sorting section](https://jsonapi.org/format/#fetching-sorting) for further details.\n\n## Relationship Linking\n\nCurrently, resources return all of their relationships, in no particular order, pursuant to how relationships\nshould be returned [according to the JSON:API specification](https://jsonapi.org/format/#document-resource-object-relationships). Consumers of this API\n**MUST NOT** make assumptions about the order of these collections. Even though this data is not currently paginated, consumers **MUST** support\npaginating relationships per the JSON:API specification if this data is important for their application.\n\">The ART19 Content API conforms to the<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://art19.com/business-terms"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ART19 Content API Documentation"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"media\"><span class=\"structural\">[</span>media<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_art19co_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16301], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_art19co_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410715, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["art19.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16295, 16296, 16297, 16298, 16299, 16300, 16302, 16303, 16304], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@art19.com, name:ART19 Engineering Team, x-twitter:art19co }\ndescription: The ART19 Content API conforms to the [JSON:API specification](http://jsonapi.org).\n\nAPI requests **MUST** use the HTTP Accept header:\n\n`Accept: application/vnd.api+json`\n\nAPI requests **MUST** be authenticated using the HTTP Authorization header:\n\n`Authorization: Token token="your-token", credential="your-credential"`\n\n## General Notes\n\nSome query parameters use unencoded [ and ] characters simply for readability. Defaults, examples, and\npossible values are additionally rendered in double quotes for readability. In practice, query parameters should\nnot have quotes around the values (e.g., `foo=bar` is valid, not `foo="bar"`), and both query parameter keys\nand values must be percent-encoded, per the requirements in [RFC 3986 § 3.4](https://tools.ietf.org/html/rfc3986#section-3.4).\n\n## Rate Limiting\n\nIn order to provide a fair distribution of available resources, all API calls are subject to rate limits.\nIf you exceed the number of API calls per minute granted to your credential, a `429 Too Many Requests`\nerror response will be returned.\n\nIn that case, a `Retry-After` header MAY be included in the response, describing the number of seconds\nafter which a request can be retried.\n\nIf you run into a high number of 429 errors, please reach out to ART19 Support to adjust your rate limit.\n\n### Example\n\nIn the following example the request can be retried after waiting for 21 seconds:\n\n HTTP/1.1 429 Too Many Requests\n Content-Type: text/html\n Retry-After: 21\n\n## Pagination\n\nRequests to collection endpoints **SHOULD** provide pagination parameters.\nSome endpoints **REQUIRE** pagination parameters to be provided.\nWhenever pagination is provided, it **MUST** be valid.\nFailing to provide pagination when it is required or providing wrong or incomplete pagination\nalways results in a `400 Bad Request` error response.\n\nThe page numbering starts with `1` and the maximum page size (if not otherwise documented\non an endpoint) is `100`. Pagination **MUST NOT** be specified if requesting a list of IDs (using an `ids[]` parameter).\n\nProviding invalid values for page number or page size, as well as providing only a page number or only a page size,\nis considered an error. Pagination is provided like this:\n\n`page[number]=1&page[size]=25`\n\nResponses conform to the [JSON:API specification's pagination section](https://jsonapi.org/format/#fetching-pagination)\nby including pagination links. Your requested page size will be carried into the pagination links.\n\n## Sorting\n\nRequests to collection endpoints usually accept a `sort` parameter. Please refer to the\n[JSON:API Specification's sorting section](https://jsonapi.org/format/#fetching-sorting) for further details.\n\n## Relationship Linking\n\nCurrently, resources return all of their relationships, in no particular order, pursuant to how relationships\nshould be returned [according to the JSON:API specification](https://jsonapi.org/format/#document-resource-object-relationships). Consumers of this API\n**MUST NOT** make assumptions about the order of these collections. Even though this data is not currently paginated, consumers **MUST** support\npaginating relationships per the JSON:API specification if this data is important for their application.\n\ntermsOfService: https://art19.com/business-terms\ntitle: ART19 Content API Documentation\nversion: 1.0.0\nx-apisguru-categories: [media]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_art19co_profile_image.jpeg }\nx-origin: format url version\n 0 openapi https://art19.com/swagger_json/extern... 3.0\n\nx-providerName: art19.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>sup<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/art19.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/art19.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [16291, 16305, 16306, 16307, 16308, 16309], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-26T17:28:52.000Z\ninfo: { contact:{ email:support@art19.com, name:ART19 Engineering Team, x-twitter:art19co }, description:The ART19 Content API conforms to the [JSON:API specification](http://jsonapi.org).\n\nAPI requests **MUST** use the HTTP Accept header:\n\n`Accept: application/vnd.api+json`\n\nAPI requests **MUST** be authenticated using the HTTP Authorization header:\n\n`Authorization: Token token="your-token", credential="your-credential"`\n\n## General Notes\n\nSome query parameters use unencoded [ and ] characters simply for readability. Defaults, examples, and\npossible values are additionally rendered in double quotes for readability. In practice, query parameters should\nnot have quotes around the values (e.g., `foo=bar` is valid, not `foo="bar"`), and both query parameter keys\nand values must be percent-encoded, per the requirements in [RFC 3986 § 3.4](https://tools.ietf.org/html/rfc3986#section-3.4).\n\n## Rate Limiting\n\nIn order to provide a fair distribution of available resources, all API calls are subject to rate limits.\nIf you exceed the number of API calls per minute granted to your credential, a `..., termsOfService:https://art19.com/business-terms, title:ART19 Content API Documentation, version:1.0.0, x-apisguru-categories:[media], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_art19co_profile_image.jpeg }, x-origin:[1 x 3] { format:openapi, url:https://art19.com/swagger_json/external/content.json, version:3.0 }, x-providerName:art19.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26T17:28:52.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16310], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2017-11-26T17:28:52.000Z, info:{ contact:{ email:support@art19.com, name:ART19 Engineering Team, x-twitter:art19co }, description:The ART19 Content API conforms to the [JSON:API specification](http://jsonapi.org).\n\nAPI requests **MUST** use the HTTP Accept header:\n\n`Accept: application/vnd.api+json`\n\nAPI requests **MUST** be authenticated using the HTTP Authorization header:\n\n`Authorization: Token token="your-token", credential="your-credential"`\n\n## General Notes\n\nSome query parameters use unencoded [ and ] characters simply for readability. Defaults, examples, and\npossible values are additionally rendered in double quotes for readability. In practice, query parameters should\nnot have quotes around the values (e.g., `foo=bar` is valid, not `foo="bar"`), and both query parameter keys\nand values must be percent-encoded, per the requirements in [RFC 3986 § 3.4](https://tools.ietf.org/html/rfc3986#section-3.4).\n\n## Rate Limiting\n\nIn order to provide a fair distribution of available resources, all ..., updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/art19.com/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"art19.com: DataRow\">art19.com</span>", children: [16289, 16290, 16311], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-26T17:28:52.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2017-11-26T17:28:52.000Z, info:{ contact:{ email:support@art19.com, name:ART19 Engineering Team, x-twitter:art19co }, description:The ART19 Content API conforms to the [JSON:API specification](http://jsonapi.org).\n\nAPI requests **MUST** use the HTTP Accept header:\n\n`Accept: application/vnd.api+json`\n\nAPI requests **MUST** be authenticated using the HTTP Authorization header:\n\n`Authorization: Token token="your-token", credential="your-credential"`\n\n## General Notes\n\nSome query parameters use unencoded [ and ] characters simply for readability. Defaults, examples, and\npossible values are additionally rendered in double quotes for readability. In practice, query parameters should\nnot have quotes around the values (e.g., `foo=bar` is valid, not `foo="bar"`), and both query parameter keys\nand values must be percent-encoded, per the requirements in [RFC 3986 § 3.4](https://tools.ietf.org/html/rfc3986#section-3.4).\n\n## Rate Limiting\n\nIn order to provide a fair di... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26T17:28:52.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-16T09:31:38.967Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-04-16T09:31:38.967Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Asana Support"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://asana.com/support"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16316, 16317], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Asana Support\nurl: https://asana.com/support\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Asana Support<span class=\"structural\">, </span><span class=\"structural\">url: </span>https:/<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).\">This is the interface for interacting<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://www.apache.org/licenses/LICENSE-2.0\">https://www.apache.org/licenses/LICEN<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16320, 16321], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: https://www.apache.org/licenses/LICENSE-2.0\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>https://ww<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://asana.com/terms"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Asana"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-docs-schema-whitelist: List<String>\">x-docs-schema-whitelist</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"AsanaResource\nAsanaNamedResource\nAttachmentResponse\nAttachmentCompact\nBatchResponse\nCustomFieldSettingResponse\nCustomFieldSettingCompact\nCustomFieldResponse\nCustomFieldCompact\nEnumOption\nEventResponse\nErrorResponse\nGoalResponse\nGoalCompact\nJobResponse\nJobCompact\nOrganiztaionExportResponse\nOrganiztaionExportCompact\nPortfolioMembershipResponse\nPortfolioMembershipCompact\nPortfolioResponse\nPortfolioCompact\nProjectMembershipResponse\nProjectMembershipCompact\nProjectResponse\nProjectCompact\nProjectStatusResponse\nProjectStatusCompact\nSectionResponse\nSectionCompact\nStoryResponse\nStoryCompact\nTagResponse\nTagCompact\nTaskResponse\nTaskCompact\nTeamMembershipResponse\nTeamMembershipCompact\nTeamResponse\nTeamCompact\nUserTaskListResponse\nUserTaskListCompact\nUserResponse\nUserCompact\nWebhookFilter\nWebhookResponse\nWebhookCompact\nWorkspaceMembershipResponse\nWorkspaceMembershipCompact\nWorkspaceResponse\nWorkspaceCompact\"><span class=\"structural\">[</span>AsanaResource<span class=\"structural\">, </span>AsanaNamedResource<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_d1gwm4cf8hecp4.cloudfront.net_images_favicons_apple-touch-icon-57x57.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16328], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_d1gwm4cf8hecp4.cloudfront.net_images_favicons_apple-touch-icon-57x57.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410716, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["asana.com"] },
{ name: "<span title=\"x-public-description: String\">x-public-description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).\">This is the interface for interacting<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16318, 16319, 16322, 16323, 16324, 16325, 16326, 16327, 16329, 16330, 16331, 16332], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:Asana Support, url:https://asana.com/support }\ndescription: This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).\nlicense: { name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }\ntermsOfService: https://asana.com/terms\ntitle: Asana\nversion: 1.0\nx-apisguru-categories: [developer_tools]\nx-docs-schema-whitelist: [AsanaResource, AsanaNamedResource, AttachmentResponse, AttachmentCompact, BatchResponse, CustomFieldSettingResponse, CustomFieldSettingCompact, CustomFieldResponse, CustomFieldCompact, EnumOption, EventResponse, ErrorResponse, GoalResponse, GoalCompact, JobResponse, JobCompact, OrganiztaionExportResponse, OrganiztaionExportCompact, PortfolioMembershipResponse, PortfolioMembershipCompact, PortfolioResponse, PortfolioCompact, ProjectMembershipResponse, ProjectMembershipCompact, ProjectResponse, ProjectCompact, ProjectStatusResponse, ProjectStatusCompact, SectionResponse, SectionCompact, StoryResponse, StoryCompact, TagResponse, TagCompact, TaskResponse, TaskCompact, TeamMembershipResponse, TeamMembershipCompact, TeamResponse, TeamCompact, UserTaskListResponse, UserTaskListCompact, UserResponse, UserCompact, WebhookFilter, WebhookResponse, WebhookCompact, WorkspaceMembershipResponse, WorkspaceMembershipCompact, WorkspaceResponse, WorkspaceCompact]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_d1gwm4cf8hecp4.cloudfront.net_images_favicons_apple-touch-icon-57x57.png }\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Asa... 3.0\n\nx-providerName: asana.com\nx-public-description: This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Asa<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/asana.com/1.0/openapi.json\">https://api.apis.guru/v2/specs/asana.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/asana.com/1.0/openapi.yaml\">https://api.apis.guru/v2/specs/asana.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0: DataRow\">1.0</span>", children: [16315, 16333, 16334, 16335, 16336, 16337], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-16T09:31:38.967Z\ninfo: { contact:{ name:Asana Support, url:https://asana.com/support }, description:This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml)., license:{ name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }, termsOfService:https://asana.com/terms, title:Asana, version:1.0, x-apisguru-categories:[developer_tools], x-docs-schema-whitelist:[AsanaResource, AsanaNamedResource, AttachmentResponse, AttachmentCompact, BatchResponse, CustomFieldSettingResponse, CustomFieldSettingCompact, CustomFieldResponse, CustomFieldCompact, EnumOption, EventResponse, ErrorResponse, GoalResponse, GoalCompact, JobResponse, JobCompact, OrganiztaionExportResponse, OrganiztaionExportCompact, PortfolioMembershipResponse, PortfolioMembershipCompact, PortfolioResponse, PortfolioCompact, ProjectMembershipResponse, ProjectMembershipCompact, ProjectResponse, ProjectCompact, ProjectStatusResponse, ProjectStatusCompact, SectionResponse, SectionCompact, StoryResponse, StoryCompact, TagResponse, TagCompact, TaskResponse, TaskCompact, TeamMembershipResponse, TeamMembershipCompact, TeamResponse, TeamCompact, UserTaskListResponse, UserTaskListCompact, UserResponse, UserCompact, WebhookFilter, WebhookResponse, WebhookCompact, WorkspaceMembershipResponse, WorkspaceMembershipCompact, WorkspaceResponse, WorkspaceCompact], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_d1gwm4cf8hecp4.cloudfront.net_images_favicons_apple-touch-icon-57x57.png }, x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml, version:3.0 }, x-providerName:asana.com, x-public-description:This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml). }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/asana.com/1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/asana.com/1.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16T09:31:38.967Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16338], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0: { added:2021-04-16T09:31:38.967Z, info:{ contact:{ name:Asana Support, url:https://asana.com/support }, description:This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml)., license:{ name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }, termsOfService:https://asana.com/terms, title:Asana, version:1.0, x-apisguru-categories:[developer_tools], x-docs-schema-whitelist:[AsanaResource, AsanaNamedResource, AttachmentResponse, AttachmentCompact, BatchResponse, CustomFieldSettingResponse, CustomFieldSettingCompact, CustomFieldResponse, CustomFieldCompact, EnumOption, EventResponse, ErrorResponse, GoalResponse, GoalCompact, JobResponse, JobCompact, OrganiztaionExportResponse, OrganiztaionExportCompact, PortfolioMembershipResponse, PortfolioMembershipCompact, PortfolioResponse, PortfolioCompact, ProjectMembershipResponse, ProjectMembershipCo..., updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/asana.com/1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/asana.com/1.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16T0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"asana.com: DataRow\">asana.com</span>", children: [16313, 16314, 16339], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-04-16T09:31:38.967Z\npreferred: 1.0\nversions: { 1.0:{ added:2021-04-16T09:31:38.967Z, info:{ contact:{ name:Asana Support, url:https://asana.com/support }, description:This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml)., license:{ name:Apache 2.0, url:https://www.apache.org/licenses/LICENSE-2.0 }, termsOfService:https://asana.com/terms, title:Asana, version:1.0, x-apisguru-categories:[developer_tools], x-docs-schema-whitelist:[AsanaResource, AsanaNamedResource, AttachmentResponse, AttachmentCompact, BatchResponse, CustomFieldSettingResponse, CustomFieldSettingCompact, CustomFieldResponse, CustomFieldCompact, EnumOption, EventResponse, ErrorResponse, GoalResponse, GoalCompact, JobResponse, JobCompact, OrganiztaionExportResponse, OrganiztaionExportCompact, PortfolioMembershipResponse, PortfolioMembershipCompact, PortfolioResponse, PortfolioCompact, Project... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-04-16T09:31:38.967Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-27T11:28:18.777Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2021-01-27T11:28:18.777Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hi@asuarez.dev"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16344], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hi@asuarez.dev\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hi@asuarez.dev<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"# Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\n# Operations\nThe API allows for the `/similarity/by_song` operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional `/similarity/by_content` endpoint which allows clients to search similarity given a free String input through a JSON request body. Additional `/song/search` operation is available for searching songs given a query String.\n\n# Endpoint\nThe API endpoint for the SearchLy API v1 is as follows:\n```\nhttps://searchly.asuarez.dev/api/v1\n```\n\n# Motivation\nThis project was built in order to create an API for searching similarities based on song lyrics. There are a lot of songs in the industry and most of them are talking about the same topic. What I wanted to prove with SearchLy was to estimate how similar are two songs between them based on the meaning of their lyrics.\n\nSearchLy is using a database of 100k songs from AZLyrics, using [this scraper](https://github.com/AlbertSuarez/azlyrics-scraper), which is being updated periodically. Then, using word2vec and NMSLIB, it was possible to create an index where you can search similarities using the k-nearest neighbors (KNN) algorithm.\n\n> **Note**: I am currently using a micro-instance from DigitalOcean where the API is deployed, so you should expect a bad performance. However, if this API becomes popular I will deploy it in a bigger instance.\n\"># Introduction\nThe SearchLy API provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["SearchLy API v1"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"media\"><span class=\"structural\">[</span>media<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410717, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["asuarez.dev"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["searchly"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16353], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16345, 16346, 16347, 16348, 16349, 16350, 16351, 16352, 16354], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hi@asuarez.dev }\ndescription: # Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\n# Operations\nThe API allows for the `/similarity/by_song` operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional `/similarity/by_content` endpoint which allows clients to search similarity given a free String input through a JSON request body. Additional `/song/search` operation is available for searching songs given a query String.\n\n# Endpoint\nThe API endpoint for the SearchLy API v1 is as follows:\n```\nhttps://searchly.asuarez.dev/api/v1\n```\n\n# Motivation\nThis project was built in order to create an API for searching similarities based on song lyrics. There are a lot of songs in the industry and most of them are talking about the same topic. What I wanted to prove with SearchLy was to estimate how similar are two songs between them based on the meaning of their lyrics.\n\nSearchLy is using a database of 100k songs from AZLyrics, using [this scraper](https://github.com/AlbertSuarez/azlyrics-scraper), which is being updated periodically. Then, using word2vec and NMSLIB, it was possible to create an index where you can search similarities using the k-nearest neighbors (KNN) algorithm.\n\n> **Note**: I am currently using a micro-instance from DigitalOcean where the API is deployed, so you should expect a bad performance. However, if this API becomes popular I will deploy it in a bigger instance.\n\ntitle: SearchLy API v1\nversion: 1.0\nx-apisguru-categories: [media]\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Alb... 3.0\n\nx-providerName: asuarez.dev\nx-serviceName: searchly\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hi@asuar<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["SearchLy demo"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://searchly.asuarez.dev/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16356, 16357], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: SearchLy demo\nurl: https://searchly.asuarez.dev/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>SearchLy demo<span class=\"structural\">, </span><span class=\"structural\">url: </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.json\">https://api.apis.guru/v2/specs/asuare<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.yaml\">https://api.apis.guru/v2/specs/asuare<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1.0: DataRow\">1.0</span>", children: [16343, 16355, 16358, 16359, 16360, 16361, 16362], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-27T11:28:18.777Z\ninfo: { contact:{ email:hi@asuarez.dev }, description:# Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\n# Operations\nThe API allows for the `/similarity/by_song` operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional `/similarity/by_content` endpoint which allows clients to search similarity given a free String input through a JSON request body. Additional `/song/search` operation is available for searching songs given a query String.\n\n# Endpoint\nThe API endpoint for the SearchLy API v1 is as follows:\n```\nhttps://searchly.asuarez.dev/api/v1\n```\n\n# Motivation\nThis project was built in order to create an API for searching similarities based on song lyrics. There are a lot of songs in the industry and most of them are talking about the same topic. What I wanted to prove with SearchLy was to estimate how similar are two songs between them based on the meaning of their lyrics.\n\nSearchLy is using a database of 100k songs from AZLyrics, ..., title:SearchLy API v1, version:1.0, x-apisguru-categories:[media], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/AlbertSuarez/searchly/master/src/searchly/static/openapi/openapi_v1.yaml, version:3.0 }, x-providerName:asuarez.dev, x-serviceName:searchly, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nexternalDocs: { description:SearchLy demo, url:https://searchly.asuarez.dev/ }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-27T11:28:18.777Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16363], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0: { added:2021-01-27T11:28:18.777Z, info:{ contact:{ email:hi@asuarez.dev }, description:# Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\n# Operations\nThe API allows for the `/similarity/by_song` operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional `/similarity/by_content` endpoint which allows clients to search similarity given a free String input through a JSON request body. Additional `/song/search` operation is available for searching songs given a query String.\n\n# Endpoint\nThe API endpoint for the SearchLy API v1 is as follows:\n```\nhttps://searchly.asuarez.dev/api/v1\n```\n\n# Motivation\nThis project was built in order to create an API for searching similarities based on song lyrics. There are a lot of songs in the industry and most of them are talking about the same topic. What I wanted to prove with SearchLy was to estimate how similar are two songs between them based on the meaning of their lyrics..., externalDocs:{ description:SearchLy demo, url:https://searchly.asuarez.dev/ }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/asuarez.dev/searchly/1.0/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-27T1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"asuarez.dev:searchly: DataRow\">asuarez.dev:searchly</span>", children: [16341, 16342, 16364], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2021-01-27T11:28:18.777Z\npreferred: 1.0\nversions: { 1.0:{ added:2021-01-27T11:28:18.777Z, info:{ contact:{ email:hi@asuarez.dev }, description:# Introduction\nThe SearchLy API provides similarity searching based on song lyrics.\n\n# Operations\nThe API allows for the `/similarity/by_song` operation, which allows clients to search the similarity for an existing song in the database. Also, the API has an additional `/similarity/by_content` endpoint which allows clients to search similarity given a free String input through a JSON request body. Additional `/song/search` operation is available for searching songs given a query String.\n\n# Endpoint\nThe API endpoint for the SearchLy API v1 is as follows:\n```\nhttps://searchly.asuarez.dev/api/v1\n```\n\n# Motivation\nThis project was built in order to create an API for searching similarities based on song lyrics. There are a lot of songs in the industry and most of them are talking about the same topic. What I wanted to prove with SearchLy was to estimate how similar are two songs between th... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2021-01-27T11:28:18.777Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-21T13:46:07.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1001.0.0-SNAPSHOT"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-21T13:46:07.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["ecosystem@atlassian.com"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["Atlassian"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16369, 16370], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: ecosystem@atlassian.com\nx-twitter: Atlassian\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>ecosystem@atlassian.com<span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Jira Cloud platform REST API documentation\">Jira Cloud platform REST API document<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16373, 16374], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["http://atlassian.com/terms/"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["The Jira Cloud platform REST API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1001.0.0-SNAPSHOT"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"developer_tools\"><span class=\"structural\">[</span>developer_tools<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16380], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410718, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["atlassian.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["jira"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16371, 16372, 16375, 16376, 16377, 16378, 16379, 16381, 16382, 16383, 16384], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:ecosystem@atlassian.com, x-twitter:Atlassian }\ndescription: Jira Cloud platform REST API documentation\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntermsOfService: http://atlassian.com/terms/\ntitle: The Jira Cloud platform REST API\nversion: 1001.0.0-SNAPSHOT\nx-apisguru-categories: [developer_tools]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png }\nx-origin: format url version\n 0 openapi https://developer.atlassian.com/cloud... 3.0\n\nx-providerName: atlassian.com\nx-serviceName: jira\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>ec<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">x...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Find out more about Atlassian products and services.\">Find out more about Atlassian product<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.atlassian.com"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16386, 16387], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Find out more about Atlassian products and services.\nurl: http://www.atlassian.com\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Find out more <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.json\">https://api.apis.guru/v2/specs/atlass<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.yaml\">https://api.apis.guru/v2/specs/atlass<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.1"] },
{ name: "<span title=\"1001.0.0-SNAPSHOT: DataRow\">1001.0.0-SNAPSHOT</span>", children: [16368, 16385, 16388, 16389, 16390, 16391, 16392], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-21T13:46:07.000Z\ninfo: { contact:{ email:ecosystem@atlassian.com, x-twitter:Atlassian }, description:Jira Cloud platform REST API documentation, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://atlassian.com/terms/, title:The Jira Cloud platform REST API, version:1001.0.0-SNAPSHOT, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer.atlassian.com/cloud/jira/platform/swagger-v3.v3.json, version:3.0 }, x-providerName:atlassian.com, x-serviceName:jira }\nexternalDocs: { description:Find out more about Atlassian products and services., url:http://www.atlassian.com }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.yaml\nopenapiVer: 3.0.1\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-21T13:46:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16393], rightAlign: false, values: ["<span class=\"formatted\" title=\"1001.0.0-SNAPSHOT: { added:2018-11-21T13:46:07.000Z, info:{ contact:{ email:ecosystem@atlassian.com, x-twitter:Atlassian }, description:Jira Cloud platform REST API documentation, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://atlassian.com/terms/, title:The Jira Cloud platform REST API, version:1001.0.0-SNAPSHOT, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer.atlassian.com/cloud/jira/platform/swagger-v3.v3.json, version:3.0 }, x-providerName:atlassian.com, x-serviceName:jira }, externalDocs:{ description:Find out more about Atlassian products and services., url:http://www.atlassian.com }, updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.yaml, openapiVer:3.0.1 }\"><span class=\"structural\">{ </span><span class=\"structural\">1001.0.0-SNAPSHOT: </span><span class=\"structural\">{ </span><span class=\"structural\">added...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"atlassian.com:jira: DataRow\">atlassian.com:jira</span>", children: [16366, 16367, 16394], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-21T13:46:07.000Z\npreferred: 1001.0.0-SNAPSHOT\nversions: { 1001.0.0-SNAPSHOT:{ added:2018-11-21T13:46:07.000Z, info:{ contact:{ email:ecosystem@atlassian.com, x-twitter:Atlassian }, description:Jira Cloud platform REST API documentation, license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, termsOfService:http://atlassian.com/terms/, title:The Jira Cloud platform REST API, version:1001.0.0-SNAPSHOT, x-apisguru-categories:[developer_tools], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_Atlassian_profile_image.png }, x-origin:[1 x 3] { format:openapi, url:https://developer.atlassian.com/cloud/jira/platform/swagger-v3.v3.json, version:3.0 }, x-providerName:atlassian.com, x-serviceName:jira }, externalDocs:{ description:Find out more about Atlassian products and services., url:http://www.atlassian.com }, updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/ope... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-21T13:46:07.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-06T11:44:38.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.0.6"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-06T11:44:38.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"# Introduction\nThe Business Registries API is built on HTTP. The API is RESTful. It has predictable resource URIs.\n\n The API is documented in <a target="_blank" href="https://github.com/OAI/OpenAPI-Specification">OpenAPI</a> format.\n In addition to the standard OpenAPI syntax we use a few\n <a target="_blank" href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md">vendor extensions</a>.\n\n# Overview\nThe following sections describe the resources that make up the Business Registries REST API.\n## Current Version\nBy default, all requests to https://api.abr.ato.gov.au receive the `v1` version of the REST API. We encourage you to explicitly request this version via the `Accept` header.\n\n Accept: application/vnd.abr-ato.v1+json\n\n## Schema\nAll API access is over HTTPS, and accessed from https://api.abr.ato.gov.au. All data is sent and received as JSON. Blank fields are included.\n\n All dates use the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n\n YYYY-MM-DD\n\n For example: `2017-07-01` (the 1st of July 2017)\n\n All timestamps use the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n\n YYYY-MM-DDTHH:MM:SSZ\n\n For example: `2017-07-01T11:05:06+10:00`\n\n## Timezones\nSome requests allow for specifying timestamps or generate timestamps with time zone information. We apply the following rules, in order of priority, to determine timezone information for API calls.\n### Explicitly provide an ISO 8601 timestamp with timezone information\nFor API calls that allow for a timestamp to be specified, we use that exact timestamp.\n\n For example: `2017-07-01T11:05:06+10:00`\n\n## Pagination\nInformation about pagination is provided in the [Link](https://tools.ietf.org/html/rfc5988#page-6) header.\n\n For example:\n\n Link: <https://api.abr.ato.gov.au/individuals?page=2>; rel="next",\n <https://api.abr.ato.gov.au/individuals?page=34>; rel="last"\n\n`rel="next"` states that the next page is `page=2`. This makes sense, since by default, all paginated queries start at page `1`. `rel="last"` provides some more information, stating that the last page of results is on `page 34`. Accordingly, we have 33 more pages of information that we can consume.\n## Parameters\nMany API methods take optional parameters:\n\n GET /individuals/1234/addresses/?addressType='Mailing'\n\nIn this example, the '1234' value is provided for the `:partyId` parameter in the path while `:addressType` is passed in the query string.\nFor POST, PATCH, PUT, and DELETE requests, parameters not included in the URL should be encoded as JSON with a Content-Type of 'application/json'.\n## Metadata\nThe API provides **metadata services** that you can use to discover information about the classifcation schemes and values used by the Registry.\n\n For example:\n\n GET /classifications/roles\n\n Sample response:\n\n [\n {\n "id": "123e4567-e89b-12d3-a456-426655440001",\n "role": "Director",\n "roleDescription": "An individual responsible for managing a company's ...",\n "relationship": "Directorship",\n "reciprocalRole": "Company",\n "reciprocalRoleDescription": "An incorporated legal entity."\n },\n {\n ...\n }\n ]\n\n## Root Endpoint\nYou can issue a GET request to the root endpoint (also known as the service root) to get all the endpoint categories that the REST API supports:\n\n curl https://api.abr.ato.gov.au\n\n## Authentication\nThe Business Registries API supports API Key authentication.\n\n When you sign up for an account, you are given your first API key. You can generate additional API keys, and delete\n API keys (as you may need to rotate your keys in the future). You authenticate to the Business Registries API by\n providing your secret key in the request header.\n\n **Note:** Some requests will return `404 Not Found`, instead of `403 Permission Denied`. This is to prevent the\n accidental leakage of information to unauthorised users.\n\"># Introduction\nThe Business Registrie<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Creative Commons Attribution 3.0 Australia\">Creative Commons Attribution 3.0 Aust<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://creativecommons.org/licenses/by/3.0/au/\">https://creativecommons.org/licenses/<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16400, 16401], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Creative Commons Attribution 3.0 Australia\nurl: https://creativecommons.org/licenses/by/3.0/au/\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Creative Commons Attr<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://ato.gov.au/terms-of-service/"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Business Registries"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.0.6"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"financial\"><span class=\"structural\">[</span>financial<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#D3D3D3"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_www.ato.gov.au_uploadedImages_Content__DEM_Images_logo-ato.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16407, 16408], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #D3D3D3\nurl: https://api.apis.guru/v2/cache/logo/https_www.ato.gov.au_uploadedImages_Content__DEM_Images_logo-ato.png\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#D3D3D3<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410719, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["ato.gov.au"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16399, 16402, 16403, 16404, 16405, 16406, 16409, 16410, 16411], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: # Introduction\nThe Business Registries API is built on HTTP. The API is RESTful. It has predictable resource URIs.\n\n The API is documented in <a target="_blank" href="https://github.com/OAI/OpenAPI-Specification">OpenAPI</a> format.\n In addition to the standard OpenAPI syntax we use a few\n <a target="_blank" href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md">vendor extensions</a>.\n\n# Overview\nThe following sections describe the resources that make up the Business Registries REST API.\n## Current Version\nBy default, all requests to https://api.abr.ato.gov.au receive the `v1` version of the REST API. We encourage you to explicitly request this version via the `Accept` header.\n\n Accept: application/vnd.abr-ato.v1+json\n\n## Schema\nAll API access is over HTTPS, and accessed from https://api.abr.ato.gov.au. All data is sent and received as JSON. Blank fields are included.\n\n All dates use the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n\n YYYY-MM-DD\n\n For example: `2017-07-01` (the 1st of July 2017)\n\n All timestamps use the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n\n YYYY-MM-DDTHH:MM:SSZ\n\n For example: `2017-07-01T11:05:06+10:00`\n\n## Timezones\nSome requests allow for specifying timestamps or generate timestamps with time zone information. We apply the following rules, in order of priority, to determine timezone information for API calls.\n### Explicitly provide an ISO 8601 timestamp with timezone information\nFor API calls that allow for a timestamp to be specified, we use that exact timestamp.\n\n For example: `2017-07-01T11:05:06+10:00`\n\n## Pagination\nInformation about pagination is provided in the [Link](https://tools.ietf.org/html/rfc5988#page-6) header.\n\n For example:\n\n Link: <https://api.abr.ato.gov.au/individuals?page=2>; rel="next",\n <https://api.abr.ato.gov.au/individuals?page=34>; rel="last"\n\n`rel="next"` states that the next page is `page=2`. This makes sense, since by default, all paginated queries start at page `1`. `rel="last"` provides some more information, stating that the last page of results is on `page 34`. Accordingly, we have 33 more pages of information that we can consume.\n## Parameters\nMany API methods take optional parameters:\n\n GET /individuals/1234/addresses/?addressType='Mailing'\n\nIn this example, the '1234' value is provided for the `:partyId` parameter in the path while `:addressType` is passed in the query string.\nFor POST, PATCH, PUT, and DELETE requests, parameters not included in the URL should be encoded as JSON with a Content-Type of 'application/json'.\n## Metadata\nThe API provides **metadata services** that you can use to discover information about the classifcation schemes and values used by the Registry.\n\n For example:\n\n GET /classifications/roles\n\n Sample response:\n\n [\n {\n "id": "123e4567-e89b-12d3-a456-426655440001",\n "role": "Director",\n "roleDescription": "An individual responsible for managing a company's ...",\n "relationship": "Directorship",\n "reciprocalRole": "Company",\n "reciprocalRoleDescription": "An incorporated legal entity."\n },\n {\n ...\n }\n ]\n\n## Root Endpoint\nYou can issue a GET request to the root endpoint (also known as the service root) to get all the endpoint categories that the REST API supports:\n\n curl https://api.abr.ato.gov.au\n\n## Authentication\nThe Business Registries API supports API Key authentication.\n\n When you sign up for an account, you are given your first API key. You can generate additional API keys, and delete\n API keys (as you may need to rotate your keys in the future). You authenticate to the Business Registries API by\n providing your secret key in the request header.\n\n **Note:** Some requests will return `404 Not Found`, instead of `403 Permission Denied`. This is to prevent the\n accidental leakage of information to unauthorised users.\n\nlicense: { name:Creative Commons Attribution 3.0 Australia, url:https://creativecommons.org/licenses/by/3.0/au/ }\ntermsOfService: https://ato.gov.au/terms-of-service/\ntitle: Business Registries\nversion: 0.0.6\nx-apisguru-categories: [financial]\nx-logo: { backgroundColor:#D3D3D3, url:https://api.apis.guru/v2/cache/logo/https_www.ato.gov.au_uploadedImages_Content__DEM_Images_logo-ato.png }\nx-origin: format url version\n 0 swagger https://ato-team.github.io/business-r... 2.0\n\nx-providerName: ato.gov.au\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span># Introduction\n<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2017-09-06T11:44:38.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.json\">https://api.apis.guru/v2/specs/ato.go<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.yaml\">https://api.apis.guru/v2/specs/ato.go<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"0.0.6: DataRow\">0.0.6</span>", children: [16398, 16412, 16413, 16414, 16415, 16416], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-06T11:44:38.000Z\ninfo: { description:# Introduction\nThe Business Registries API is built on HTTP. The API is RESTful. It has predictable resource URIs.\n\n The API is documented in <a target="_blank" href="https://github.com/OAI/OpenAPI-Specification">OpenAPI</a> format.\n In addition to the standard OpenAPI syntax we use a few\n <a target="_blank" href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md">vendor extensions</a>.\n\n# Overview\nThe following sections describe the resources that make up the Business Registries REST API.\n## Current Version\nBy default, all requests to https://api.abr.ato.gov.au receive the `v1` version of the REST API. We encourage you to explicitly request this version via the `Accept` header.\n\n Accept: application/vnd.abr-ato.v1+json\n\n## Schema\nAll API access is over HTTPS, and accessed from https://api.abr.ato.gov.au. All data is sent and received as JSON. Blank fields are included.\n\n All dates use the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n\n..., license:{ name:Creative Commons Attribution 3.0 Australia, url:https://creativecommons.org/licenses/by/3.0/au/ }, termsOfService:https://ato.gov.au/terms-of-service/, title:Business Registries, version:0.0.6, x-apisguru-categories:[financial], x-logo:{ backgroundColor:#D3D3D3, url:https://api.apis.guru/v2/cache/logo/https_www.ato.gov.au_uploadedImages_Content__DEM_Images_logo-ato.png }, x-origin:[1 x 3] { format:swagger, url:https://ato-team.github.io/business-registries-rest-api-specification/swagger.yaml, version:2.0 }, x-providerName:ato.gov.au }\nupdated: 2017-09-06T11:44:38.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-06T11:44:38.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16417], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.0.6: { added:2017-09-06T11:44:38.000Z, info:{ description:# Introduction\nThe Business Registries API is built on HTTP. The API is RESTful. It has predictable resource URIs.\n\n The API is documented in <a target="_blank" href="https://github.com/OAI/OpenAPI-Specification">OpenAPI</a> format.\n In addition to the standard OpenAPI syntax we use a few\n <a target="_blank" href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md">vendor extensions</a>.\n\n# Overview\nThe following sections describe the resources that make up the Business Registries REST API.\n## Current Version\nBy default, all requests to https://api.abr.ato.gov.au receive the `v1` version of the REST API. We encourage you to explicitly request this version via the `Accept` header.\n\n Accept: application/vnd.abr-ato.v1+json\n\n## Schema\nAll API access is over HTTPS, and accessed from https://api.abr.ato.gov.au. All data is sent and received as JSON. Blank fields are included.\n\n All dates use the [ISO 8601](https://en.wikiped..., updated:2017-09-06T11:44:38.000Z, swaggerUrl:https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/ato.gov.au/0.0.6/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.0.6: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-06<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"ato.gov.au: DataRow\">ato.gov.au</span>", children: [16396, 16397, 16418], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-06T11:44:38.000Z\npreferred: 0.0.6\nversions: { 0.0.6:{ added:2017-09-06T11:44:38.000Z, info:{ description:# Introduction\nThe Business Registries API is built on HTTP. The API is RESTful. It has predictable resource URIs.\n\n The API is documented in <a target="_blank" href="https://github.com/OAI/OpenAPI-Specification">OpenAPI</a> format.\n In addition to the standard OpenAPI syntax we use a few\n <a target="_blank" href="https://github.com/Rebilly/ReDoc/blob/master/docs/redoc-vendor-extensions.md">vendor extensions</a>.\n\n# Overview\nThe following sections describe the resources that make up the Business Registries REST API.\n## Current Version\nBy default, all requests to https://api.abr.ato.gov.au receive the `v1` version of the REST API. We encourage you to explicitly request this version via the `Accept` header.\n\n Accept: application/vnd.abr-ato.v1+json\n\n## Schema\nAll API access is over HTTPS, and accessed from https://api.abr.ato.gov.au. All data is sent and received as JSON. Blank fields are included.\n\n All date... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-06T11:44:38.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-04T12:49:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-09-04T12:49:06.000Z"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Auckland Museum API Team"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.aucklandmuseum.com"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16423, 16424], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Auckland Museum API Team\nurl: http://www.aucklandmuseum.com\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Auckland Museum API Team<span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"This is technical documentation for the Auckland Museum API\n\">This is technical documentation for t<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Auckland Museum licence"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://www.aucklandmuseum.com"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16427, 16428], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Auckland Museum licence\nurl: http://www.aucklandmuseum.com\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Auckland Museum licence<span class=\"structural\">, </span><span class=\"structural\">ur...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["http://api.aucklandmuseum.com/terms/"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Auckland Museum API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"open_data\"><span class=\"structural\">[</span>open_data<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#FFFFFF"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16434, 16435], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #FFFFFF\nurl: https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#FFFFFF<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410720, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["aucklandmuseum.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16425, 16426, 16429, 16430, 16431, 16432, 16433, 16436, 16437, 16438], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { name:Auckland Museum API Team, url:http://www.aucklandmuseum.com }\ndescription: This is technical documentation for the Auckland Museum API\n\nlicense: { name:Auckland Museum licence, url:http://www.aucklandmuseum.com }\ntermsOfService: http://api.aucklandmuseum.com/terms/\ntitle: Auckland Museum API\nversion: 2.0.0\nx-apisguru-categories: [open_data]\nx-logo: { backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg }\nx-origin: format url version\n 0 swagger http://api.aucklandmuseum.com/apidoc 2.0\n\nx-providerName: aucklandmuseum.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Auc<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.json\">https://api.apis.guru/v2/specs/auckla<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.yaml\">https://api.apis.guru/v2/specs/auckla<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2.0.0: DataRow\">2.0.0</span>", children: [16422, 16439, 16440, 16441, 16442, 16443], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-04T12:49:06.000Z\ninfo: { contact:{ name:Auckland Museum API Team, url:http://www.aucklandmuseum.com }, description:This is technical documentation for the Auckland Museum API\n, license:{ name:Auckland Museum licence, url:http://www.aucklandmuseum.com }, termsOfService:http://api.aucklandmuseum.com/terms/, title:Auckland Museum API, version:2.0.0, x-apisguru-categories:[open_data], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aucklandmuseum.com/apidoc, version:2.0 }, x-providerName:aucklandmuseum.com }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-04T12:49:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16444], rightAlign: false, values: ["<span class=\"formatted\" title=\"2.0.0: { added:2017-09-04T12:49:06.000Z, info:{ contact:{ name:Auckland Museum API Team, url:http://www.aucklandmuseum.com }, description:This is technical documentation for the Auckland Museum API\n, license:{ name:Auckland Museum licence, url:http://www.aucklandmuseum.com }, termsOfService:http://api.aucklandmuseum.com/terms/, title:Auckland Museum API, version:2.0.0, x-apisguru-categories:[open_data], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aucklandmuseum.com/apidoc, version:2.0 }, x-providerName:aucklandmuseum.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-04<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"aucklandmuseum.com: DataRow\">aucklandmuseum.com</span>", children: [16420, 16421, 16445], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-09-04T12:49:06.000Z\npreferred: 2.0.0\nversions: { 2.0.0:{ added:2017-09-04T12:49:06.000Z, info:{ contact:{ name:Auckland Museum API Team, url:http://www.aucklandmuseum.com }, description:This is technical documentation for the Auckland Museum API\n, license:{ name:Auckland Museum licence, url:http://www.aucklandmuseum.com }, termsOfService:http://api.aucklandmuseum.com/terms/, title:Auckland Museum API, version:2.0.0, x-apisguru-categories:[open_data], x-logo:{ backgroundColor:#FFFFFF, url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aucklandmuseum_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aucklandmuseum.com/apidoc, version:2.0 }, x-providerName:aucklandmuseum.com }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aucklandmuseum.com/2.0.0/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-09-04T12:49:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-15T14:45:58.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-03-15T14:45:58.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["hello@authentiq.com"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Team Authentiq"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://www.authentiq.com/"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16450, 16451, 16452], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: hello@authentiq.com\nname: Team Authentiq\nurl: https://www.authentiq.com/\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hello@authentiq.com<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Authentiq Connect OAuth 2.0 and OpenID Connect API reference.\nLearn about [Authentiq ID](https://www.authentiq.com/) or check out the [Authentiq Connect](https://developers.authentiq.com) developer documentation.\n\">Authentiq Connect OAuth 2.0 and OpenI<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"termsOfService: String\">termsOfService</span>", children: [], rightAlign: false, values: ["https://www.authentiq.com/terms"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Authentiq Connect API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"security\"><span class=\"structural\">[</span>security<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"backgroundColor: String\">backgroundColor</span>", children: [], rightAlign: false, values: ["#F26641"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16459, 16460], rightAlign: false, values: ["<span class=\"formatted\" title=\"backgroundColor: #F26641\nurl: https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg\"><span class=\"structural\">{ </span><span class=\"structural\">backgroundColor: </span>#F26641<span class=\"structural\">, </span><span class=\"structural\">url: </span>ht<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410721, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["authentiq.io"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16453, 16454, 16455, 16456, 16457, 16458, 16461, 16462, 16463], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:hello@authentiq.com, name:Team Authentiq, url:https://www.authentiq.com/ }\ndescription: Authentiq Connect OAuth 2.0 and OpenID Connect API reference.\nLearn about [Authentiq ID](https://www.authentiq.com/) or check out the [Authentiq Connect](https://developers.authentiq.com) developer documentation.\n\ntermsOfService: https://www.authentiq.com/terms\ntitle: Authentiq Connect API\nversion: 1.0\nx-apisguru-categories: [security]\nx-logo: { backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Aut... 2.0\n\nx-providerName: authentiq.io\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>hel<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Authentiq Developer Docs"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["https://developers.authentiq.com/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16465, 16466], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Authentiq Developer Docs\nurl: https://developers.authentiq.com/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Authentiq Deve<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-06-21T12:16:53.715Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.json\">https://api.apis.guru/v2/specs/authen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.yaml\">https://api.apis.guru/v2/specs/authen<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"1.0: DataRow\">1.0</span>", children: [16449, 16464, 16467, 16468, 16469, 16470, 16471], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-15T14:45:58.000Z\ninfo: { contact:{ email:hello@authentiq.com, name:Team Authentiq, url:https://www.authentiq.com/ }, description:Authentiq Connect OAuth 2.0 and OpenID Connect API reference.\nLearn about [Authentiq ID](https://www.authentiq.com/) or check out the [Authentiq Connect](https://developers.authentiq.com) developer documentation.\n, termsOfService:https://www.authentiq.com/terms, title:Authentiq Connect API, version:1.0, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/provider.yaml, version:2.0 }, x-providerName:authentiq.io }\nexternalDocs: { description:Authentiq Developer Docs, url:https://developers.authentiq.com/ }\nupdated: 2021-06-21T12:16:53.715Z\nswaggerUrl: https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T14:45:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16472], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0: { added:2017-03-15T14:45:58.000Z, info:{ contact:{ email:hello@authentiq.com, name:Team Authentiq, url:https://www.authentiq.com/ }, description:Authentiq Connect OAuth 2.0 and OpenID Connect API reference.\nLearn about [Authentiq ID](https://www.authentiq.com/) or check out the [Authentiq Connect](https://developers.authentiq.com) developer documentation.\n, termsOfService:https://www.authentiq.com/terms, title:Authentiq Connect API, version:1.0, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/provider.yaml, version:2.0 }, x-providerName:authentiq.io }, externalDocs:{ description:Authentiq Developer Docs, url:https://developers.authentiq.com/ }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/authentiq.io/1.0/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"authentiq.io: DataRow\">authentiq.io</span>", children: [16447, 16448, 16473], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-03-15T14:45:58.000Z\npreferred: 1.0\nversions: { 1.0:{ added:2017-03-15T14:45:58.000Z, info:{ contact:{ email:hello@authentiq.com, name:Team Authentiq, url:https://www.authentiq.com/ }, description:Authentiq Connect OAuth 2.0 and OpenID Connect API reference.\nLearn about [Authentiq ID](https://www.authentiq.com/) or check out the [Authentiq Connect](https://developers.authentiq.com) developer documentation.\n, termsOfService:https://www.authentiq.com/terms, title:Authentiq Connect API, version:1.0, x-apisguru-categories:[security], x-logo:{ backgroundColor:#F26641, url:https://api.apis.guru/v2/cache/logo/https_www.authentiq.com_theme_images_authentiq-logo-a-inverse.svg }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/AuthentiqID/authentiq-docs/master/docs/swagger/provider.yaml, version:2.0 }, x-providerName:authentiq.io }, externalDocs:{ description:Authentiq Developer Docs, url:https://developers.authentiq.com/ }, updated:2021-06-21T12:16:53.715Z, swaggerUrl:https://api.apis.guru/v2/specs/authentiq.io/1.0/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-03-15T14:45:58.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-23T13:48:13.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["0.1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-23T13:48:13.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"<div style="">This API provides access to our Automotive Data. Use of this API is subject to our <a href="https://autodealerdata.com/tos">Terms of Service</a></div>\n&nbsp;\n<h3 style="">For a quick start guide <a href="/APIQuickStart">click here</a></h3>\n&nbsp;\n<div> If you signed up through RapidAPI make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">here</a></div>\n&nbsp;\n<div>The general workflow is to: <br/>&nbsp;<div><strong>1.</strong> Authenticate with your CIS Automotive API Keys to get a Json Web Token (JWT). Do not use RapidAPI keys.</div>\n<div><div><strong>2.</strong> Then use that token as an argument when calling other endpoints.</div>\n&nbsp;\n<div>Equivalent HTTP GET and POST methods are available for some endpoints. </div>\n&nbsp;\n<div>Endpoints may appear more than once on this page if they are associated with multiple tags. eg "Sales Data", "Premium", "Pro Plan or Greater" To see which endpoints are included in different\nplans look under the "X Plan or Greater" tags for the respective plan name.</div>\n&nbsp;\n<h3>If you signed up for our API through RapidAPI you can make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">on their platform</a>. \nYour RapidAPI credentials will not work on this page.</h3><h3> Do not use your RapidAPI keys on this page.</h3>\n<h3>If you signed up with us and have an account, you must first authenticate with your API Keys \nand retrieve a Json Web Token (JWT) from the /getToken endpoint to access the other endpoints.</h3> \n\n<h3>Your JWT is a required argument to all endpoints.</h3></div>\"><div style="">This API provides acces<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["CIS Automotive API"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["0.1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410722, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["autodealerdata.com"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16484], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16478, 16479, 16480, 16481, 16482, 16483, 16485], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: <div style="">This API provides access to our Automotive Data. Use of this API is subject to our <a href="https://autodealerdata.com/tos">Terms of Service</a></div>\n&nbsp;\n<h3 style="">For a quick start guide <a href="/APIQuickStart">click here</a></h3>\n&nbsp;\n<div> If you signed up through RapidAPI make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">here</a></div>\n&nbsp;\n<div>The general workflow is to: <br/>&nbsp;<div><strong>1.</strong> Authenticate with your CIS Automotive API Keys to get a Json Web Token (JWT). Do not use RapidAPI keys.</div>\n<div><div><strong>2.</strong> Then use that token as an argument when calling other endpoints.</div>\n&nbsp;\n<div>Equivalent HTTP GET and POST methods are available for some endpoints. </div>\n&nbsp;\n<div>Endpoints may appear more than once on this page if they are associated with multiple tags. eg "Sales Data", "Premium", "Pro Plan or Greater" To see which endpoints are included in different\nplans look under the "X Plan or Greater" tags for the respective plan name.</div>\n&nbsp;\n<h3>If you signed up for our API through RapidAPI you can make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">on their platform</a>. \nYour RapidAPI credentials will not work on this page.</h3><h3> Do not use your RapidAPI keys on this page.</h3>\n<h3>If you signed up with us and have an account, you must first authenticate with your API Keys \nand retrieve a Json Web Token (JWT) from the /getToken endpoint to access the other endpoints.</h3> \n\n<h3>Your JWT is a required argument to all endpoints.</h3></div>\ntitle: CIS Automotive API\nversion: 0.1\nx-apisguru-categories: [ecommerce]\nx-origin: format url version\n 0 openapi https://api.autodealerdata.com/openap... 3.0\n\nx-providerName: autodealerdata.com\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span><div style="">T<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-23T09:34:59.789Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.json\">https://api.apis.guru/v2/specs/autode<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.yaml\">https://api.apis.guru/v2/specs/autode<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.2"] },
{ name: "<span title=\"0.1: DataRow\">0.1</span>", children: [16477, 16486, 16487, 16488, 16489, 16490], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-23T13:48:13.000Z\ninfo: { description:<div style="">This API provides access to our Automotive Data. Use of this API is subject to our <a href="https://autodealerdata.com/tos">Terms of Service</a></div>\n&nbsp;\n<h3 style="">For a quick start guide <a href="/APIQuickStart">click here</a></h3>\n&nbsp;\n<div> If you signed up through RapidAPI make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">here</a></div>\n&nbsp;\n<div>The general workflow is to: <br/>&nbsp;<div><strong>1.</strong> Authenticate with your CIS Automotive API Keys to get a Json Web Token (JWT). Do not use RapidAPI keys.</div>\n<div><div><strong>2.</strong> Then use that token as an argument when calling other endpoints.</div>\n&nbsp;\n<div>Equivalent HTTP GET and POST methods are available for some endpoints. </div>\n&nbsp;\n<div>Endpoints may appear more than once on this page if they are associated with multiple tags. eg "Sales Data", "Premium", "Pro Plan or Gr..., title:CIS Automotive API, version:0.1, x-apisguru-categories:[ecommerce], x-origin:[1 x 3] { format:openapi, url:https://api.autodealerdata.com/openapi.json, version:3.0 }, x-providerName:autodealerdata.com, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nupdated: 2021-08-23T09:34:59.789Z\nswaggerUrl: https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.yaml\nopenapiVer: 3.0.2\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-23T13:48:13.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16491], rightAlign: false, values: ["<span class=\"formatted\" title=\"0.1: { added:2020-03-23T13:48:13.000Z, info:{ description:<div style="">This API provides access to our Automotive Data. Use of this API is subject to our <a href="https://autodealerdata.com/tos">Terms of Service</a></div>\n&nbsp;\n<h3 style="">For a quick start guide <a href="/APIQuickStart">click here</a></h3>\n&nbsp;\n<div> If you signed up through RapidAPI make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">here</a></div>\n&nbsp;\n<div>The general workflow is to: <br/>&nbsp;<div><strong>1.</strong> Authenticate with your CIS Automotive API Keys to get a Json Web Token (JWT). Do not use RapidAPI keys.</div>\n<div><div><strong>2.</strong> Then use that token as an argument when calling other endpoints.</div>\n&nbsp;\n<div>Equivalent HTTP GET and POST methods are available for some endpoints. </div>\n&nbsp;\n<div>Endpoints may appear more than once on this page if they are associated with multiple tags. eg "Sales Data", "..., updated:2021-08-23T09:34:59.789Z, swaggerUrl:https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/autodealerdata.com/0.1/openapi.yaml, openapiVer:3.0.2 }\"><span class=\"structural\">{ </span><span class=\"structural\">0.1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-23T1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"autodealerdata.com: DataRow\">autodealerdata.com</span>", children: [16475, 16476, 16492], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-23T13:48:13.000Z\npreferred: 0.1\nversions: { 0.1:{ added:2020-03-23T13:48:13.000Z, info:{ description:<div style="">This API provides access to our Automotive Data. Use of this API is subject to our <a href="https://autodealerdata.com/tos">Terms of Service</a></div>\n&nbsp;\n<h3 style="">For a quick start guide <a href="/APIQuickStart">click here</a></h3>\n&nbsp;\n<div> If you signed up through RapidAPI make your test calls <a href="https://rapidapi.com/competitive-intelligence-solutions-llc-competitive-intelligence-solutions-llc-default/api/cis-automotive">here</a></div>\n&nbsp;\n<div>The general workflow is to: <br/>&nbsp;<div><strong>1.</strong> Authenticate with your CIS Automotive API Keys to get a Json Web Token (JWT). Do not use RapidAPI keys.</div>\n<div><div><strong>2.</strong> Then use that token as an argument when calling other endpoints.</div>\n&nbsp;\n<div>Equivalent HTTP GET and POST methods are available for some endpoints. </div>\n&nbsp;\n<div>Endpoints may appear more than once on this page if they are associated... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-23T13:48:13.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-21T11:17:54.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-21T11:17:54.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["AvazaHq"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16497], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: AvazaHq\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AvazaHq<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Welcome to the autogenerated documentation & test tool for Avaza's API. <br/><br/><strong>API Security & Authentication</strong><br/>Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS <br/><br/>You can set up and manage your api authentication credentials from within your Avaza account. (requires Administrator permissions on your Avaza account).<br/><br/> OAuth2 Authorization endpoint: https://any.avaza.com/oauth2/authorize <br/>OAuth2 Token endpoint: https://any.avaza.com/oauth2/token<br/>Base URL for subsequent API Requests: https://api.avaza.com/ <br/><br/>Blogpost about authenticating with Avaza's API: https://www.avaza.com/avaza-api-oauth2-authentication/ <br/>Blogpost on using Avaza's webhooks: https://www.avaza.com/avaza-api-webhook-notifications/<br/>The OAuth flow currently issues Access Tokens that last 1 day, and Refresh tokens that last 180 days<br/>The Api respects the security Roles assigned to the authenticating Avaza user and filters the data return appropriately. <br/><br><strong>Support</strong><br/>For API Support, and to request access please contact Avaza Support Team via our support chat. <br/><br/><strong>User Contributed Libraries:</strong><br/>Graciously contributed by 3rd party users like you. <br/>Note these are not tested or endorsesd by Avaza. We encourage you to review before use, and use at own risk.<br/> <ul><li> - <a target='blank' href='https://packagist.org/packages/debiprasad/oauth2-avaza'>PHP OAuth Client Package for Azava API (by Debiprasad Sahoo)</a></li></ul>\">Welcome to the autogenerated document<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Avaza API Documentation"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"collaboration\"><span class=\"structural\">[</span>collaboration<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_AvazaHq_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16503], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_AvazaHq_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410723, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["avaza.com"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16498, 16499, 16500, 16501, 16502, 16504, 16505, 16506], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:AvazaHq }\ndescription: Welcome to the autogenerated documentation & test tool for Avaza's API. <br/><br/><strong>API Security & Authentication</strong><br/>Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS <br/><br/>You can set up and manage your api authentication credentials from within your Avaza account. (requires Administrator permissions on your Avaza account).<br/><br/> OAuth2 Authorization endpoint: https://any.avaza.com/oauth2/authorize <br/>OAuth2 Token endpoint: https://any.avaza.com/oauth2/token<br/>Base URL for subsequent API Requests: https://api.avaza.com/ <br/><br/>Blogpost about authenticating with Avaza's API: https://www.avaza.com/avaza-api-oauth2-authentication/ <br/>Blogpost on using Avaza's webhooks: https://www.avaza.com/avaza-api-webhook-notifications/<br/>The OAuth flow currently issues Access Tokens that last 1 day, and Refresh tokens that last 180 days<br/>The Api respects the security Roles assigned to the authenticating Avaza user and filters the data return appropriately. <br/><br><strong>Support</strong><br/>For API Support, and to request access please contact Avaza Support Team via our support chat. <br/><br/><strong>User Contributed Libraries:</strong><br/>Graciously contributed by 3rd party users like you. <br/>Note these are not tested or endorsesd by Avaza. We encourage you to review before use, and use at own risk.<br/> <ul><li> - <a target='blank' href='https://packagist.org/packages/debiprasad/oauth2-avaza'>PHP OAuth Client Package for Azava API (by Debiprasad Sahoo)</a></li></ul>\ntitle: Avaza API Documentation\nversion: v1\nx-apisguru-categories: [collaboration]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AvazaHq_profile_image.jpeg }\nx-origin: format url version\n 0 swagger https://api.avaza.com/swagger/docs/v1 2.0\n\nx-providerName: avaza.com\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>AvazaHq<span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2021-08-02T08:20:08.766Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/avaza.com/v1/swagger.json\">https://api.apis.guru/v2/specs/avaza.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/avaza.com/v1/swagger.yaml\">https://api.apis.guru/v2/specs/avaza.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"v1: DataRow\">v1</span>", children: [16496, 16507, 16508, 16509, 16510, 16511], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-21T11:17:54.000Z\ninfo: { contact:{ x-twitter:AvazaHq }, description:Welcome to the autogenerated documentation & test tool for Avaza's API. <br/><br/><strong>API Security & Authentication</strong><br/>Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS <br/><br/>You can set up and manage your api authentication credentials from within your Avaza account. (requires Administrator permissions on your Avaza account).<br/><br/> OAuth2 Authorization endpoint: https://any.avaza.com/oauth2/authorize <br/>OAuth2 Token endpoint: https://any.avaza.com/oauth2/token<br/>Base URL for subsequent API Requests: https://api.avaza.com/ <br/><br/>Blogpost about authenticating with Avaza's API: https://www.avaza.com/avaza-api-oauth2-authentication/ <br/>Blogpost on using Avaza's webhooks: https://www.avaza.com/avaza-api-webhook-notifications/<br/>The OAuth flow currently issues Access Tokens that last 1 day, and Refresh tokens that last 180 days<br/>The Api respects th..., title:Avaza API Documentation, version:v1, x-apisguru-categories:[collaboration], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_AvazaHq_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:https://api.avaza.com/swagger/docs/v1, version:2.0 }, x-providerName:avaza.com }\nupdated: 2021-08-02T08:20:08.766Z\nswaggerUrl: https://api.apis.guru/v2/specs/avaza.com/v1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/avaza.com/v1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-21T11:17:54.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16512], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1: { added:2017-11-21T11:17:54.000Z, info:{ contact:{ x-twitter:AvazaHq }, description:Welcome to the autogenerated documentation & test tool for Avaza's API. <br/><br/><strong>API Security & Authentication</strong><br/>Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS <br/><br/>You can set up and manage your api authentication credentials from within your Avaza account. (requires Administrator permissions on your Avaza account).<br/><br/> OAuth2 Authorization endpoint: https://any.avaza.com/oauth2/authorize <br/>OAuth2 Token endpoint: https://any.avaza.com/oauth2/token<br/>Base URL for subsequent API Requests: https://api.avaza.com/ <br/><br/>Blogpost about authenticating with Avaza's API: https://www.avaza.com/avaza-api-oauth2-authentication/ <br/>Blogpost on using Avaza's webhooks: https://www.avaza.com/avaza-api-webhook-notifications/<br/>The OAuth flow currently issues Access Tokens that last 1 day, and Refresh toke..., updated:2021-08-02T08:20:08.766Z, swaggerUrl:https://api.apis.guru/v2/specs/avaza.com/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/avaza.com/v1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-21T11<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"avaza.com: DataRow\">avaza.com</span>", children: [16494, 16495, 16513], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-21T11:17:54.000Z\npreferred: v1\nversions: { v1:{ added:2017-11-21T11:17:54.000Z, info:{ contact:{ x-twitter:AvazaHq }, description:Welcome to the autogenerated documentation & test tool for Avaza's API. <br/><br/><strong>API Security & Authentication</strong><br/>Authentication options include OAuth2 Implicit and Authorization Code flows, and Personal Access Token. All connections should be encrypted over SSL/TLS <br/><br/>You can set up and manage your api authentication credentials from within your Avaza account. (requires Administrator permissions on your Avaza account).<br/><br/> OAuth2 Authorization endpoint: https://any.avaza.com/oauth2/authorize <br/>OAuth2 Token endpoint: https://any.avaza.com/oauth2/token<br/>Base URL for subsequent API Requests: https://api.avaza.com/ <br/><br/>Blogpost about authenticating with Avaza's API: https://www.avaza.com/avaza-api-oauth2-authentication/ <br/>Blogpost on using Avaza's webhooks: https://www.avaza.com/avaza-api-webhook-notifications/<br/>The OAuth flow currently issues Access T... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-21T11:17:54.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-26T17:48:04.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-11-26T17:48:04.000Z"] },
{ name: "<span title=\"x-twitter: String\">x-twitter</span>", children: [], rightAlign: false, values: ["aviationdataSYS"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16518], rightAlign: false, values: ["<span class=\"formatted\" title=\"x-twitter: aviationdataSYS\"><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>aviationdataSYS<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AviationData.Systems Airports API V1"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["v1"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"transport\"><span class=\"structural\">[</span>transport<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16523], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410724, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["aviationdata.systems"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16519, 16520, 16521, 16522, 16524, 16525, 16526], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { x-twitter:aviationdataSYS }\ntitle: AviationData.Systems Airports API V1\nversion: v1\nx-apisguru-categories: [transport]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg }\nx-origin: format url version\n 0 swagger http://api.aviationdata.systems//swag... 2.0\n\nx-providerName: aviationdata.systems\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">x-twitter: </span>avia<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2018-05-29T13:40:40.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.json\">https://api.apis.guru/v2/specs/aviati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.yaml\">https://api.apis.guru/v2/specs/aviati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"v1: DataRow\">v1</span>", children: [16517, 16527, 16528, 16529, 16530, 16531], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-26T17:48:04.000Z\ninfo: { contact:{ x-twitter:aviationdataSYS }, title:AviationData.Systems Airports API V1, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aviationdata.systems//swagger/docs/v1, version:2.0 }, x-providerName:aviationdata.systems }\nupdated: 2018-05-29T13:40:40.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26T17:48:04.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16532], rightAlign: false, values: ["<span class=\"formatted\" title=\"v1: { added:2017-11-26T17:48:04.000Z, info:{ contact:{ x-twitter:aviationdataSYS }, title:AviationData.Systems Airports API V1, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aviationdata.systems//swagger/docs/v1, version:2.0 }, x-providerName:aviationdata.systems }, updated:2018-05-29T13:40:40.000Z, swaggerUrl:https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">v1: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26T17<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"aviationdata.systems: DataRow\">aviationdata.systems</span>", children: [16515, 16516, 16533], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-11-26T17:48:04.000Z\npreferred: v1\nversions: { v1:{ added:2017-11-26T17:48:04.000Z, info:{ contact:{ x-twitter:aviationdataSYS }, title:AviationData.Systems Airports API V1, version:v1, x-apisguru-categories:[transport], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_twitter.com_aviationdataSYS_profile_image.jpeg }, x-origin:[1 x 3] { format:swagger, url:http://api.aviationdata.systems//swagger/docs/v1, version:2.0 }, x-providerName:aviationdata.systems }, updated:2018-05-29T13:40:40.000Z, swaggerUrl:https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/aviationdata.systems/v1/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-11-26T17:48:04.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-19T07:37:11.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-19T07:37:11.000Z"] },
{ name: "<span title=\"email: String\">email</span>", children: [], rightAlign: false, values: ["support@axesso.de"] },
{ name: "<span title=\"contact: DataRow\">contact</span>", children: [16538], rightAlign: false, values: ["<span class=\"formatted\" title=\"email: support@axesso.de\"><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@axesso.de<span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use this api to fetch information to Amazon products and more.\">Use this api to fetch information to <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["Apache 2.0"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"http://www.apache.org/licenses/LICENSE-2.0.html\">http://www.apache.org/licenses/LICENS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"license: DataRow\">license</span>", children: [16541, 16542], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: Apache 2.0\nurl: http://www.apache.org/licenses/LICENSE-2.0.html\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>Apache 2.0<span class=\"structural\">, </span><span class=\"structural\">url: </span>http://www<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Axesso Api"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["1.0.0"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"ecommerce\"><span class=\"structural\">[</span>ecommerce<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410725, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["axesso.de"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16549], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16539, 16540, 16543, 16544, 16545, 16546, 16547, 16548, 16550], rightAlign: false, values: ["<span class=\"formatted\" title=\"contact: { email:support@axesso.de }\ndescription: Use this api to fetch information to Amazon products and more.\nlicense: { name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }\ntitle: Axesso Api\nversion: 1.0.0\nx-apisguru-categories: [ecommerce]\nx-origin: format url version\n 0 openapi https://raw.githubusercontent.com/Axe... 3.0\n\nx-providerName: axesso.de\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg }\"><span class=\"structural\">{ </span><span class=\"structural\">contact: </span><span class=\"structural\">{ </span><span class=\"structural\">email: </span>support@<span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["Find out more about Swagger"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["http://api-doc.axesso.de/"] },
{ name: "<span title=\"externalDocs: DataRow\">externalDocs</span>", children: [16552, 16553], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Find out more about Swagger\nurl: http://api-doc.axesso.de/\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Find out more <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">u...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-11-23T17:04:42.171Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.json\">https://api.apis.guru/v2/specs/axesso<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.yaml\">https://api.apis.guru/v2/specs/axesso<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["3.0.0"] },
{ name: "<span title=\"1.0.0: DataRow\">1.0.0</span>", children: [16537, 16551, 16554, 16555, 16556, 16557, 16558], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-19T07:37:11.000Z\ninfo: { contact:{ email:support@axesso.de }, description:Use this api to fetch information to Amazon products and more., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Axesso Api, version:1.0.0, x-apisguru-categories:[ecommerce], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Axesso/axesso-java-client/master/swagger/axessor_api_def_swagger.yaml, version:3.0 }, x-providerName:axesso.de, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }\nexternalDocs: { description:Find out more about Swagger, url:http://api-doc.axesso.de/ }\nupdated: 2020-11-23T17:04:42.171Z\nswaggerUrl: https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.yaml\nopenapiVer: 3.0.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-19T07:37:11.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16559], rightAlign: false, values: ["<span class=\"formatted\" title=\"1.0.0: { added:2019-02-19T07:37:11.000Z, info:{ contact:{ email:support@axesso.de }, description:Use this api to fetch information to Amazon products and more., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Axesso Api, version:1.0.0, x-apisguru-categories:[ecommerce], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Axesso/axesso-java-client/master/swagger/axessor_api_def_swagger.yaml, version:3.0 }, x-providerName:axesso.de, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, externalDocs:{ description:Find out more about Swagger, url:http://api-doc.axesso.de/ }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.yaml, openapiVer:3.0.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">1.0.0: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-19<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"axesso.de: DataRow\">axesso.de</span>", children: [16535, 16536, 16560], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-19T07:37:11.000Z\npreferred: 1.0.0\nversions: { 1.0.0:{ added:2019-02-19T07:37:11.000Z, info:{ contact:{ email:support@axesso.de }, description:Use this api to fetch information to Amazon products and more., license:{ name:Apache 2.0, url:http://www.apache.org/licenses/LICENSE-2.0.html }, title:Axesso Api, version:1.0.0, x-apisguru-categories:[ecommerce], x-origin:[1 x 3] { format:openapi, url:https://raw.githubusercontent.com/Axesso/axesso-java-client/master/swagger/axessor_api_def_swagger.yaml, version:3.0 }, x-providerName:axesso.de, x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_apis.guru_assets_images_no-logo.svg } }, externalDocs:{ description:Find out more about Swagger, url:http://api-doc.axesso.de/ }, updated:2020-11-23T17:04:42.171Z, swaggerUrl:https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/axesso.de/1.0.0/openapi.yaml, openapiVer:3.0.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-19T07:37:11.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-26T08:40:59.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-12-03"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-02-26T08:40:59.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Enterprise Knowledge Graph Service is a platform for creating knowledge graphs at scale.\">Azure Enterprise Knowledge Graph Serv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Azure Enterprise Knowledge Graph Service"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-12-03"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16569], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410726, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger\">EnterpriseKnowledgeGraph-EnterpriseKn<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16565, 16566, 16567, 16568, 16570, 16571, 16572, 16573, 16574], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Enterprise Knowledge Graph Service is a platform for creating knowledge graphs at scale.\ntitle: Azure Enterprise Knowledge Graph Service\nversion: 2018-12-03\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Enterpris<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-12-03: DataRow\">2018-12-03</span>", children: [16564, 16575, 16576, 16577, 16578, 16579], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-26T08:40:59.000Z\ninfo: { description:Azure Enterprise Knowledge Graph Service is a platform for creating knowledge graphs at scale., title:Azure Enterprise Knowledge Graph Service, version:2018-12-03, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/EnterpriseKnowledgeGraph/resource-manager/Microsoft.EnterpriseKnowledgeGraph/preview/2018-12-03/EnterpriseKnowledgeGraphSwagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-26T08:40:59.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16580], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-12-03: { added:2019-02-26T08:40:59.000Z, info:{ description:Azure Enterprise Knowledge Graph Service is a platform for creating knowledge graphs at scale., title:Azure Enterprise Knowledge Graph Service, version:2018-12-03, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/EnterpriseKnowledgeGraph/resource-manager/Microsoft.EnterpriseKnowledgeGraph/preview/2018-12-03/EnterpriseKnowledgeGraphSwagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-12-03: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger: DataRow\">azure.com:EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger</span>", children: [16562, 16563, 16581], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-02-26T08:40:59.000Z\npreferred: 2018-12-03\nversions: { 2018-12-03:{ added:2019-02-26T08:40:59.000Z, info:{ description:Azure Enterprise Knowledge Graph Service is a platform for creating knowledge graphs at scale., title:Azure Enterprise Knowledge Graph Service, version:2018-12-03, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/EnterpriseKnowledgeGraph/resource-manager/Microsoft.EnterpriseKnowledgeGraph/preview/2018-12-03/EnterpriseKnowledgeGraphSwagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/EnterpriseKnowledgeGraph-EnterpriseKnowledgeGraphSwagger/2018-12-03/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/EnterpriseKnow... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-02-26T08:40:59.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-05-15"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The service for managing third party addons.\">The service for managing third party <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Azure Addons Resource Provider"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-05-15"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16590], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410727, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["addons-Addons"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16586, 16587, 16588, 16589, 16591, 16592, 16593, 16594, 16595], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The service for managing third party addons.\ntitle: Azure Addons Resource Provider\nversion: 2017-05-15\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: addons-Addons\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The service for<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2017-05-15: DataRow\">2017-05-15</span>", children: [16585, 16596, 16597, 16598, 16599, 16600], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2017-05-15, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2017-05-15/Addons.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-Addons, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16601], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-05-15: { added:2018-11-20T14:36:34.000Z, info:{ description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2017-05-15, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2017-05-15/Addons.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-Addons, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-05-15: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:addons-Addons: DataRow\">azure.com:addons-Addons</span>", children: [16583, 16584, 16602], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2017-05-15\nversions: { 2017-05-15:{ added:2018-11-20T14:36:34.000Z, info:{ description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2017-05-15, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2017-05-15/Addons.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-Addons, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/addons-Addons/2017-05-15/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-03-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The service for managing third party addons.\">The service for managing third party <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Azure Addons Resource Provider"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-03-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16611], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410728, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["addons-addons-swagger"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16607, 16608, 16609, 16610, 16612, 16613, 16614, 16615, 16616], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The service for managing third party addons.\ntitle: Azure Addons Resource Provider\nversion: 2018-03-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: addons-addons-swagger\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The service for<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-03-01: DataRow\">2018-03-01</span>", children: [16606, 16617, 16618, 16619, 16620, 16621], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2018-03-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2018-03-01/addons-swagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-addons-swagger, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16622], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-03-01: { added:2018-11-20T14:36:34.000Z, info:{ description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2018-03-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2018-03-01/addons-swagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-addons-swagger, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-03-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:addons-addons-swagger: DataRow\">azure.com:addons-addons-swagger</span>", children: [16604, 16605, 16623], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2018-03-01\nversions: { 2018-03-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:The service for managing third party addons., title:Azure Addons Resource Provider, version:2018-03-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/addons/resource-manager/Microsoft.Addons/preview/2018-03-01/addons-swagger.json, version:2.0 }, x-providerName:azure.com, x-serviceName:addons-addons-swagger, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/addons-addons-swagger/2018-03-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2014-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"REST APIs for Azure Active Directory Connect Health\">REST APIs for Azure Active Directory <span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ADHybridHealthService"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2014-01-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16632], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410729, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"adhybridhealthservice-ADHybridHealthService\">adhybridhealthservice-ADHybridHealthS<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16628, 16629, 16630, 16631, 16633, 16634, 16635, 16636, 16637], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: REST APIs for Azure Active Directory Connect Health\ntitle: ADHybridHealthService\nversion: 2014-01-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: adhybridhealthservice-ADHybridHealthService\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>REST APIs for A<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2014-01-01: DataRow\">2014-01-01</span>", children: [16627, 16638, 16639, 16640, 16641, 16642], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:REST APIs for Azure Active Directory Connect Health, title:ADHybridHealthService, version:2014-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/adhybridhealthservice/resource-manager/Microsoft.ADHybridHealthService/stable/2014-01-01/ADHybridHealthService.json, version:2.0 }, x-providerName:azure.com, x-serviceName:adhybridhealthservice-ADHybridHealthService, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16643], rightAlign: false, values: ["<span class=\"formatted\" title=\"2014-01-01: { added:2018-11-20T14:36:34.000Z, info:{ description:REST APIs for Azure Active Directory Connect Health, title:ADHybridHealthService, version:2014-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/adhybridhealthservice/resource-manager/Microsoft.ADHybridHealthService/stable/2014-01-01/ADHybridHealthService.json, version:2.0 }, x-providerName:azure.com, x-serviceName:adhybridhealthservice-ADHybridHealthService, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2014-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:adhybridhealthservice-ADHybridHealthService: DataRow\">azure.com:adhybridhealthservice-ADHybridHealthService</span>", children: [16625, 16626, 16644], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2014-01-01\nversions: { 2014-01-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:REST APIs for Azure Active Directory Connect Health, title:ADHybridHealthService, version:2014-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/adhybridhealthservice/resource-manager/Microsoft.ADHybridHealthService/stable/2014-01-01/ADHybridHealthService.json, version:2.0 }, x-providerName:azure.com, x-serviceName:adhybridhealthservice-ADHybridHealthService, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/adhybridhealthservice-ADHybridHealthService/2014-01-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-04-24T10:15:00.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2020-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-04-24T10:15:00.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["REST APIs for Azure Advisor"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AdvisorManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2020-01-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16653], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410730, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["advisor"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16649, 16650, 16651, 16652, 16654, 16655, 16656, 16657, 16658, 16659], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: REST APIs for Azure Advisor\ntitle: AdvisorManagementClient\nversion: 2020-01-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: advisor\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>REST APIs for A<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2020-01-01: DataRow\">2020-01-01</span>", children: [16648, 16660, 16661, 16662, 16663, 16664], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-04-24T10:15:00.000Z\ninfo: { description:REST APIs for Azure Advisor, title:AdvisorManagementClient, version:2020-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/advisor/resource-manager/Microsoft.Advisor/stable/2020-01-01/advisor.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:advisor, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-04-24T10:15:00.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16665], rightAlign: false, values: ["<span class=\"formatted\" title=\"2020-01-01: { added:2017-04-24T10:15:00.000Z, info:{ description:REST APIs for Azure Advisor, title:AdvisorManagementClient, version:2020-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/advisor/resource-manager/Microsoft.Advisor/stable/2020-01-01/advisor.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:advisor, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2020-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:advisor: DataRow\">azure.com:advisor</span>", children: [16646, 16647, 16666], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-04-24T10:15:00.000Z\npreferred: 2020-01-01\nversions: { 2020-01-01:{ added:2017-04-24T10:15:00.000Z, info:{ description:REST APIs for Azure Advisor, title:AdvisorManagementClient, version:2020-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/advisor/resource-manager/Microsoft.Advisor/stable/2020-01-01/advisor.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:advisor, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/advisor/2020-01-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-04-24T10:15:00.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-05-05-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor.\">Azure Alerts Management Service provi<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Alerts Management Service Resource Provider\">Azure Alerts Management Service Resou<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-05-05-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16675], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410731, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["alertsmanagement-AlertsManagement"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16671, 16672, 16673, 16674, 16676, 16677, 16678, 16679, 16680, 16681], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor.\ntitle: Azure Alerts Management Service Resource Provider\nversion: 2019-05-05-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: alertsmanagement-AlertsManagement\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Alerts Ma<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-05-05-preview: DataRow\">2019-05-05-preview</span>", children: [16670, 16682, 16683, 16684, 16685, 16686], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor., title:Azure Alerts Management Service Resource Provider, version:2019-05-05-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/preview/2019-05-05-preview/AlertsManagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-AlertsManagement, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16687], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-05-05-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor., title:Azure Alerts Management Service Resource Provider, version:2019-05-05-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/preview/2019-05-05-preview/AlertsManagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-AlertsManagement, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-05-05-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:alertsmanagement-AlertsManagement: DataRow\">azure.com:alertsmanagement-AlertsManagement</span>", children: [16668, 16669, 16688], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-05-05-preview\nversions: { 2019-05-05-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Azure Alerts Management Service provides a single pane of glass of alerts across Azure Monitor., title:Azure Alerts Management Service Resource Provider, version:2019-05-05-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/preview/2019-05-05-preview/AlertsManagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-AlertsManagement, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-05-05-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-AlertsManagement/2019-... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-25T10:27:32.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-06-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-07-25T10:27:32.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"APIs for Azure Smart Detector Alert Rules CRUD operations.\">APIs for Azure Smart Detector Alert R<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Alerts Management Service Resource Provider\">Azure Alerts Management Service Resou<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-06-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16697], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410732, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"alertsmanagement-SmartDetectorAlertRulesApi\">alertsmanagement-SmartDetectorAlertRu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16693, 16694, 16695, 16696, 16698, 16699, 16700, 16701, 16702, 16703], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: APIs for Azure Smart Detector Alert Rules CRUD operations.\ntitle: Azure Alerts Management Service Resource Provider\nversion: 2019-06-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: alertsmanagement-SmartDetectorAlertRulesApi\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>APIs for Azure <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-06-01: DataRow\">2019-06-01</span>", children: [16692, 16704, 16705, 16706, 16707, 16708], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-25T10:27:32.000Z\ninfo: { description:APIs for Azure Smart Detector Alert Rules CRUD operations., title:Azure Alerts Management Service Resource Provider, version:2019-06-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-06-01/SmartDetectorAlertRulesApi.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-SmartDetectorAlertRulesApi, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-25T10:27:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16709], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-06-01: { added:2019-07-25T10:27:32.000Z, info:{ description:APIs for Azure Smart Detector Alert Rules CRUD operations., title:Azure Alerts Management Service Resource Provider, version:2019-06-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-06-01/SmartDetectorAlertRulesApi.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-SmartDetectorAlertRulesApi, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-06-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:alertsmanagement-SmartDetectorAlertRulesApi: DataRow\">azure.com:alertsmanagement-SmartDetectorAlertRulesApi</span>", children: [16690, 16691, 16710], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-07-25T10:27:32.000Z\npreferred: 2019-06-01\nversions: { 2019-06-01:{ added:2019-07-25T10:27:32.000Z, info:{ description:APIs for Azure Smart Detector Alert Rules CRUD operations., title:Azure Alerts Management Service Resource Provider, version:2019-06-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/alertsmanagement/resource-manager/Microsoft.AlertsManagement/stable/2019-06-01/SmartDetectorAlertRulesApi.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:alertsmanagement-SmartDetectorAlertRulesApi, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/alertsmanagement-SmartDetectorAlertRulesApi/2019-06-01/swagger.yaml, op... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-07-25T10:27:32.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-08-01-beta"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Analysis Services servers\">The Azure Analysis Services Web API p<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AzureAnalysisServices"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-08-01-beta"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16719], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"name: String\">name</span>", children: [], rightAlign: false, values: ["AnalysisServicesManagementClient"] },
{ name: "<span title=\"x-ms-code-generation-settings: DataRow\">x-ms-code-generation-settings</span>", children: [16721], rightAlign: false, values: ["<span class=\"formatted\" title=\"name: AnalysisServicesManagementClient\"><span class=\"structural\">{ </span><span class=\"structural\">name: </span>AnalysisServicesManagementC<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410733, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["analysisservices"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16715, 16716, 16717, 16718, 16720, 16722, 16723, 16724, 16725, 16726, 16727], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Analysis Services servers\ntitle: AzureAnalysisServices\nversion: 2017-08-01-beta\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-ms-code-generation-settings: { name:AnalysisServicesManagementClient }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: analysisservices\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>The Azure Analy<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2017-08-01-beta: DataRow\">2017-08-01-beta</span>", children: [16714, 16728, 16729, 16730, 16731, 16732], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Analysis Services servers, title:AzureAnalysisServices, version:2017-08-01-beta, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-ms-code-generation-settings:{ name:AnalysisServicesManagementClient }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/analysisservices/resource-manager/Microsoft.AnalysisServices/preview/2017-08-01-beta/analysisservices.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:analysisservices, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16733], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-08-01-beta: { added:2017-12-04T09:12:06.000Z, info:{ description:The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Analysis Services servers, title:AzureAnalysisServices, version:2017-08-01-beta, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-ms-code-generation-settings:{ name:AnalysisServicesManagementClient }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/analysisservices/resource-manager/Microsoft.AnalysisServices/preview/2017-08-01-beta/analysisservices.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:analysisservices, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-08-01-beta: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span><span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:analysisservices: DataRow\">azure.com:analysisservices</span>", children: [16712, 16713, 16734], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2017-08-01-beta\nversions: { 2017-08-01-beta:{ added:2017-12-04T09:12:06.000Z, info:{ description:The Azure Analysis Services Web API provides a RESTful set of web services that enables users to create, retrieve, update, and delete Analysis Services servers, title:AzureAnalysisServices, version:2017-08-01-beta, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-ms-code-generation-settings:{ name:AnalysisServicesManagementClient }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/analysisservices/resource-manager/Microsoft.AnalysisServices/preview/2017-08-01-beta/analysisservices.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:analysisservices, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/analysisservices/2017-08-01-beta/swagger.json, swaggerYamlUrl:https://api.a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on entities like API, Product, and Subscription associated with your Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-01-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16743], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410734, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16739, 16740, 16741, 16742, 16744, 16745, 16746, 16747, 16748, 16749], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on entities like API, Product, and Subscription associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2018-01-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-01-01: DataRow\">2018-01-01</span>", children: [16738, 16750, 16751, 16752, 16753, 16754], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Use these REST APIs for performing operations on entities like API, Product, and Subscription associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16755], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-01-01: { added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on entities like API, Product, and Subscription associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement: DataRow\">azure.com:apimanagement</span>", children: [16736, 16737, 16756], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2018-01-01\nversions: { 2018-01-01:{ added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on entities like API, Product, and Subscription associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2018-01-01/apimanagement.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement/2018-01-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on API entity and their Operations associated with your Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16765], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410735, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimapis"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16761, 16762, 16763, 16764, 16766, 16767, 16768, 16769, 16770, 16771], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on API entity and their Operations associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimapis\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2020-03-17T10:27:09.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16760, 16772, 16773, 16774, 16775, 16776], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on API entity and their Operations associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapis.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapis, x-tags:[Azure, Microsoft] }\nupdated: 2020-03-17T10:27:09.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16777], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on API entity and their Operations associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapis.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapis, x-tags:[Azure, Microsoft] }, updated:2020-03-17T10:27:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimapis: DataRow\">azure.com:apimanagement-apimapis</span>", children: [16758, 16759, 16778], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on API entity and their Operations associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapis.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapis, x-tags:[Azure, Microsoft] }, updated:2020-03-17T10:27:09.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapis/2019-12-0... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment.\">Use these REST APIs for performing re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16787], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410736, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimapisByTags"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16783, 16784, 16785, 16786, 16788, 16789, 16790, 16791, 16792, 16793], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimapisByTags\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16782, 16794, 16795, 16796, 16797, 16798], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapisByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapisByTags, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16799], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapisByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapisByTags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimapisByTags: DataRow\">azure.com:apimanagement-apimapisByTags</span>", children: [16780, 16781, 16800], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapisByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapisByTags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapisByTags/2019-12-01-preview/swagger.yaml... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16809], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410737, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimapiversionsets"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16805, 16806, 16807, 16808, 16810, 16811, 16812, 16813, 16814, 16815], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimapiversionsets\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16804, 16816, 16817, 16818, 16819, 16820], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapiversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapiversionsets, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16821], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapiversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapiversionsets, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimapiversionsets: DataRow\">azure.com:apimanagement-apimapiversionsets</span>", children: [16802, 16803, 16822], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimapiversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimapiversionsets, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimapiversionsets/2019-12-01-preview/s... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2).\">Use these REST APIs for managing OAut<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16831], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410738, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimauthorizationservers"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16827, 16828, 16829, 16830, 16832, 16833, 16834, 16835, 16836, 16837], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2).\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimauthorizationservers\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16826, 16838, 16839, 16840, 16841, 16842], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimauthorizationservers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimauthorizationservers, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16843], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimauthorizationservers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimauthorizationservers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimauthorizationservers/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimauthorizationservers: DataRow\">azure.com:apimanagement-apimauthorizationservers</span>", children: [16824, 16825, 16844], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for managing OAuth2 servers configuration in your Azure API Management deployment. OAuth 2.0 can be used to authorize developer accounts for Azure API Management. For more information refer to [How to OAuth2](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-oauth2)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimauthorizationservers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimauthorizationservers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Backend entity in Azure API Management deployment. The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16853], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410739, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimbackends"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16849, 16850, 16851, 16852, 16854, 16855, 16856, 16857, 16858, 16859], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Backend entity in Azure API Management deployment. The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimbackends\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16848, 16860, 16861, 16862, 16863, 16864], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing operations on Backend entity in Azure API Management deployment. The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimbackends.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimbackends, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16865], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations on Backend entity in Azure API Management deployment. The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimbackends.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimbackends, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimbackends/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimbackends: DataRow\">azure.com:apimanagement-apimbackends</span>", children: [16846, 16847, 16866], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations on Backend entity in Azure API Management deployment. The Backend entity in API Management represents a backend service that is configured to skip certification chain validation when using a self-signed certificate to test mutual certificate authentication., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimbackends.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimbackends, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/a... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Cache entity in your Azure API Management deployment. Azure API Management also allows for caching responses in an external Azure Cache for Redis. For more information refer to [External Redis Cache in ApiManagement](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-cache-external).\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16875], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410740, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimcaches"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16871, 16872, 16873, 16874, 16876, 16877, 16878, 16879, 16880, 16881], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Cache entity in your Azure API Management deployment. Azure API Management also allows for caching responses in an external Azure Cache for Redis. For more information refer to [External Redis Cache in ApiManagement](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-cache-external).\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimcaches\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16870, 16882, 16883, 16884, 16885, 16886], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Cache entity in your Azure API Management deployment. Azure API Management also allows for caching responses in an external Azure Cache for Redis. For more information refer to [External Redis Cache in ApiManagement](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-cache-external)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcaches.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimcaches, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16887], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Cache entity in your Azure API Management deployment. Azure API Management also allows for caching responses in an external Azure Cache for Redis. For more information refer to [External Redis Cache in ApiManagement](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-cache-external)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcaches.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimcaches, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcaches/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimcaches: DataRow\">azure.com:apimanagement-apimcaches</span>", children: [16868, 16869, 16888], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Cache entity in your Azure API Management deployment. Azure API Management also allows for caching responses in an external Azure Cache for Redis. For more information refer to [External Redis Cache in ApiManagement](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-cache-external)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcaches.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimcaches, x-tags:[Azure, Microsoft] }, sw... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Certificate entity in your Azure API Management deployment. Certificates can be used to setup mutual authentication with your Backend in API Management. For more information refer to [How to secure backend using Mutual Auth Certificate](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-mutual-certificates).\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16897], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410741, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimcertificates"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16893, 16894, 16895, 16896, 16898, 16899, 16900, 16901, 16902, 16903], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Certificate entity in your Azure API Management deployment. Certificates can be used to setup mutual authentication with your Backend in API Management. For more information refer to [How to secure backend using Mutual Auth Certificate](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-mutual-certificates).\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimcertificates\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16892, 16904, 16905, 16906, 16907, 16908], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Certificate entity in your Azure API Management deployment. Certificates can be used to setup mutual authentication with your Backend in API Management. For more information refer to [How to secure backend using Mutual Auth Certificate](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-mutual-certificates)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcertificates.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimcertificates, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16909], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Certificate entity in your Azure API Management deployment. Certificates can be used to setup mutual authentication with your Backend in API Management. For more information refer to [How to secure backend using Mutual Auth Certificate](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-mutual-certificates)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcertificates.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimcertificates, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimcertificates/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimcertificates: DataRow\">azure.com:apimanagement-apimcertificates</span>", children: [16890, 16891, 16910], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Certificate entity in your Azure API Management deployment. Certificates can be used to setup mutual authentication with your Backend in API Management. For more information refer to [How to secure backend using Mutual Auth Certificate](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-mutual-certificates)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimcertificates.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimcertifica... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs to manage Azure API Management deployment.\">Use these REST APIs to manage Azure A<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16919], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410742, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimdeployment"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16915, 16916, 16917, 16918, 16920, 16921, 16922, 16923, 16924, 16925], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs to manage Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimdeployment\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16914, 16926, 16927, 16928, 16929, 16930], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Use these REST APIs to manage Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdeployment.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimdeployment, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16931], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs to manage Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdeployment.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimdeployment, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimdeployment: DataRow\">azure.com:apimanagement-apimdeployment</span>", children: [16912, 16913, 16932], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs to manage Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdeployment.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimdeployment, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdeployment/2019-12-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Diagnostic entity associated with your Azure API Management deployment. Diagnostics are used to log requests/responses in the APIM proxy.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16941], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410743, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimdiagnostics"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16937, 16938, 16939, 16940, 16942, 16943, 16944, 16945, 16946, 16947], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Diagnostic entity associated with your Azure API Management deployment. Diagnostics are used to log requests/responses in the APIM proxy.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimdiagnostics\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16936, 16948, 16949, 16950, 16951, 16952], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing operations on Diagnostic entity associated with your Azure API Management deployment. Diagnostics are used to log requests/responses in the APIM proxy., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdiagnostics.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimdiagnostics, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16953], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations on Diagnostic entity associated with your Azure API Management deployment. Diagnostics are used to log requests/responses in the APIM proxy., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdiagnostics.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimdiagnostics, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimdiagnostics: DataRow\">azure.com:apimanagement-apimdiagnostics</span>", children: [16934, 16935, 16954], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations on Diagnostic entity associated with your Azure API Management deployment. Diagnostics are used to log requests/responses in the APIM proxy., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimdiagnostics.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimdiagnostics, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimdiagnostics/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azu... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16963], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410744, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimemailtemplate"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16959, 16960, 16961, 16962, 16964, 16965, 16966, 16967, 16968, 16969], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2018-06-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimemailtemplate\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-02-11T11:58:34.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-06-01-preview: DataRow\">2018-06-01-preview</span>", children: [16958, 16970, 16971, 16972, 16973, 16974], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplate.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplate, x-tags:[Azure, Microsoft] }\nupdated: 2019-02-11T11:58:34.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16975], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplate.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplate, x-tags:[Azure, Microsoft] }, updated:2019-02-11T11:58:34.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimemailtemplate: DataRow\">azure.com:apimanagement-apimemailtemplate</span>", children: [16956, 16957, 16976], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2018-06-01-preview\nversions: { 2018-06-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimemailtemplate.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplate, x-tags:[Azure, Microsoft] }, updated:2019-02-11T11:58:34.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplate/2018-06-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimema... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [16985], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410745, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimemailtemplates"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [16981, 16982, 16983, 16984, 16986, 16987, 16988, 16989, 16990, 16991], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimemailtemplates\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [16980, 16992, 16993, 16994, 16995, 16996], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimemailtemplates.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplates, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [16997], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimemailtemplates.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplates, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimemailtemplates: DataRow\">azure.com:apimanagement-apimemailtemplates</span>", children: [16978, 16979, 16998], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Email Templates associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimemailtemplates.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimemailtemplates, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimemailtemplates/2019-12-01-preview... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Group entity in your Azure API Management deployment. Groups are used to manage the visibility of products to developers. Each API Management service instance comes with the following immutable system groups whose membership is automatically managed by API Management. - **Administrators** - Azure subscription administrators are members of this group. - **Developers** - Authenticated developer portal users fall into this group. - **Guests** - Unauthenticated developer portal users are placed into this group. In addition to these system groups, administrators can create custom groups or [leverage external groups in associated Azure Active Directory tenants](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad#how-to-add-an-external-azure-active-directory-group). Custom and external groups can be used alongside system groups in giving developers visibility and access to API products. For example, you could create one custom group for developers affiliated with a specific partner organization and allow them access to the APIs from a product containing relevant APIs only. A user can be a member of more than one group.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17007], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410746, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimgroups"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17003, 17004, 17005, 17006, 17008, 17009, 17010, 17011, 17012, 17013], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Group entity in your Azure API Management deployment. Groups are used to manage the visibility of products to developers. Each API Management service instance comes with the following immutable system groups whose membership is automatically managed by API Management. - **Administrators** - Azure subscription administrators are members of this group. - **Developers** - Authenticated developer portal users fall into this group. - **Guests** - Unauthenticated developer portal users are placed into this group. In addition to these system groups, administrators can create custom groups or [leverage external groups in associated Azure Active Directory tenants](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad#how-to-add-an-external-azure-active-directory-group). Custom and external groups can be used alongside system groups in giving developers visibility and access to API products. For example, you could create one custom group for developers affiliated with a specific partner organization and allow them access to the APIs from a product containing relevant APIs only. A user can be a member of more than one group.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimgroups\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17002, 17014, 17015, 17016, 17017, 17018], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Group entity in your Azure API Management deployment. Groups are used to manage the visibility of products to developers. Each API Management service instance comes with the following immutable system groups whose membership is automatically managed by API Management. - **Administrators** - Azure subscription administrators are members of this group. - **Developers** - Authenticated developer portal users fall into this group. - **Guests** - Unauthenticated developer portal users are placed into this group. In addition to these system groups, administrators can create custom groups or [leverage external groups in associated Azure Active Directory tenants](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad#how-to-add-an-external-azure-active-directory-group). Custom and external groups can be used alongside system groups in giving developers visibility and access to API products. For example, you could crea..., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimgroups.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimgroups, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17019], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Group entity in your Azure API Management deployment. Groups are used to manage the visibility of products to developers. Each API Management service instance comes with the following immutable system groups whose membership is automatically managed by API Management. - **Administrators** - Azure subscription administrators are members of this group. - **Developers** - Authenticated developer portal users fall into this group. - **Guests** - Unauthenticated developer portal users are placed into this group. In addition to these system groups, administrators can create custom groups or [leverage external groups in associated Azure Active Directory tenants](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad#how-to-add-an-external-azure-active-directory-group). Custom and external groups can be used alongside system groups in giving developers visibility and access to API products. For example, ..., swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimgroups/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimgroups: DataRow\">azure.com:apimanagement-apimgroups</span>", children: [17000, 17001, 17020], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Group entity in your Azure API Management deployment. Groups are used to manage the visibility of products to developers. Each API Management service instance comes with the following immutable system groups whose membership is automatically managed by API Management. - **Administrators** - Azure subscription administrators are members of this group. - **Developers** - Authenticated developer portal users fall into this group. - **Guests** - Unauthenticated developer portal users are placed into this group. In addition to these system groups, administrators can create custom groups or [leverage external groups in associated Azure Active Directory tenants](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-aad#how-to-add-an-external-azure-active-directory-group). Custom and external groups can be used alongside system groups in giving developers visibility an... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Identity Provider entity associated with your Azure API Management deployment. Setting up an external Identity Provider for authentication can help you manage the developer portal logins using the OAuth2 flow.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17029], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410747, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimidentityprovider"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17025, 17026, 17027, 17028, 17030, 17031, 17032, 17033, 17034, 17035], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Identity Provider entity associated with your Azure API Management deployment. Setting up an external Identity Provider for authentication can help you manage the developer portal logins using the OAuth2 flow.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimidentityprovider\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17024, 17036, 17037, 17038, 17039, 17040], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Identity Provider entity associated with your Azure API Management deployment. Setting up an external Identity Provider for authentication can help you manage the developer portal logins using the OAuth2 flow., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimidentityprovider.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimidentityprovider, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17041], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Identity Provider entity associated with your Azure API Management deployment. Setting up an external Identity Provider for authentication can help you manage the developer portal logins using the OAuth2 flow., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimidentityprovider.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimidentityprovider, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentityprovider/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimidentityprovider: DataRow\">azure.com:apimanagement-apimidentityprovider</span>", children: [17022, 17023, 17042], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Identity Provider entity associated with your Azure API Management deployment. Setting up an external Identity Provider for authentication can help you manage the developer portal logins using the OAuth2 flow., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimidentityprovider.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimidentityprovider, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimidentitypro... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use this REST API to get all the issues across an Azure Api Management service.\">Use this REST API to get all the issu<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17051], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410748, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimissues"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17047, 17048, 17049, 17050, 17052, 17053, 17054, 17055, 17056, 17057], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use this REST API to get all the issues across an Azure Api Management service.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimissues\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use this REST A<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17046, 17058, 17059, 17060, 17061, 17062], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use this REST API to get all the issues across an Azure Api Management service., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimissues.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimissues, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17063], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use this REST API to get all the issues across an Azure Api Management service., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimissues.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimissues, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimissues: DataRow\">azure.com:apimanagement-apimissues</span>", children: [17044, 17045, 17064], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use this REST API to get all the issues across an Azure Api Management service., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimissues.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimissues, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimissues/2019-12-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17073], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410749, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimloggers"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17069, 17070, 17071, 17072, 17074, 17075, 17076, 17077, 17078, 17079], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimloggers\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17068, 17080, 17081, 17082, 17083, 17084], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimloggers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimloggers, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17085], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimloggers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimloggers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimloggers/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimloggers: DataRow\">azure.com:apimanagement-apimloggers</span>", children: [17066, 17067, 17086], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on logger entity Azure API Management deployment.The Logger entity in API Management represents an event sink that you can use to log API Management events. Currently the Logger entity supports logging API Management events to Azure EventHub., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimloggers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimloggers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apim... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on NamedValue entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and NamedValues. Each API Management service instance has a NamedValues collection of key/value pairs that are global to the service instance. These NamedValues can be used to manage constant string values across all API configuration and policies.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17095], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410750, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimnamedvalues"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17091, 17092, 17093, 17094, 17096, 17097, 17098, 17099, 17100], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on NamedValue entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and NamedValues. Each API Management service instance has a NamedValues collection of key/value pairs that are global to the service instance. These NamedValues can be used to manage constant string values across all API configuration and policies.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: apimanagement-apimnamedvalues\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17090, 17101, 17102, 17103, 17104, 17105], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on NamedValue entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and NamedValues. Each API Management service instance has a NamedValues collection of key/value pairs that are global to the service instance. These NamedValues can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnamedvalues.json, version:2.0 }, x-providerName:azure.com, x-serviceName:apimanagement-apimnamedvalues, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17106], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on NamedValue entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and NamedValues. Each API Management service instance has a NamedValues collection of key/value pairs that are global to the service instance. These NamedValues can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:..., swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnamedvalues/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimnamedvalues: DataRow\">azure.com:apimanagement-apimnamedvalues</span>", children: [17088, 17089, 17107], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on NamedValue entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and NamedValues. Each API Management service instance has a NamedValues collection of key/value pairs that are global to the service instance. These NamedValues can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for getting the network connectivity status of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment.\">Use these REST APIs for getting the n<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17116], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410751, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimnetworkstatus"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17112, 17113, 17114, 17115, 17117, 17118, 17119, 17120, 17121, 17122], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for getting the network connectivity status of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimnetworkstatus\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17111, 17123, 17124, 17125, 17126, 17127], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Use these REST APIs for getting the network connectivity status of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnetworkstatus.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnetworkstatus, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17128], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for getting the network connectivity status of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnetworkstatus.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnetworkstatus, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnetworkstatus/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimnetworkstatus: DataRow\">azure.com:apimanagement-apimnetworkstatus</span>", children: [17109, 17110, 17129], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for getting the network connectivity status of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnetworkstatus.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnetworkstatus, x-tags:[Azure, Microsoft] }, swaggerUrl:https:... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on who is going to receive notifications associated with your Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17138], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410752, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimnotifications"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17134, 17135, 17136, 17137, 17139, 17140, 17141, 17142, 17143, 17144], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on who is going to receive notifications associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimnotifications\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17133, 17145, 17146, 17147, 17148, 17149], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on who is going to receive notifications associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnotifications.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnotifications, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17150], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on who is going to receive notifications associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnotifications.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnotifications, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimnotifications: DataRow\">azure.com:apimanagement-apimnotifications</span>", children: [17131, 17132, 17151], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on who is going to receive notifications associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimnotifications.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimnotifications, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimnotifications/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on OpenId Connect Provider entity associated with your Azure API Management deployment. API Management allows you to access APIs secured with token from [OpenID Connect Provider ](http://openid.net/connect/) to be accessed from the Developer Console.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17160], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410753, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimopenidconnectproviders"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17156, 17157, 17158, 17159, 17161, 17162, 17163, 17164, 17165, 17166], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on OpenId Connect Provider entity associated with your Azure API Management deployment. API Management allows you to access APIs secured with token from [OpenID Connect Provider ](http://openid.net/connect/) to be accessed from the Developer Console.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimopenidconnectproviders\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17155, 17167, 17168, 17169, 17170, 17171], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on OpenId Connect Provider entity associated with your Azure API Management deployment. API Management allows you to access APIs secured with token from [OpenID Connect Provider ](http://openid.net/connect/) to be accessed from the Developer Console., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimopenidconnectproviders.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimopenidconnectproviders, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17172], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on OpenId Connect Provider entity associated with your Azure API Management deployment. API Management allows you to access APIs secured with token from [OpenID Connect Provider ](http://openid.net/connect/) to be accessed from the Developer Console., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimopenidconnectproviders.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimopenidconnectproviders, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimopenidconnectproviders/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimopenidconnectproviders: DataRow\">azure.com:apimanagement-apimopenidconnectproviders</span>", children: [17153, 17154, 17173], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on OpenId Connect Provider entity associated with your Azure API Management deployment. API Management allows you to access APIs secured with token from [OpenID Connect Provider ](http://openid.net/connect/) to be accessed from the Developer Console., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimopenidconnectproviders.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimopenidconnectproviders, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Global Policies in Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17182], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410754, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimpolicies"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17178, 17179, 17180, 17181, 17183, 17184, 17185, 17186, 17187, 17188], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Global Policies in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimpolicies\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17177, 17189, 17190, 17191, 17192, 17193], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Global Policies in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicies.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicies, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17194], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Global Policies in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicies.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicies, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimpolicies: DataRow\">azure.com:apimanagement-apimpolicies</span>", children: [17175, 17176, 17195], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Global Policies in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicies.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicies, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicies/2019-12-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment.\">Use these REST APIs for performing re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17204], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410755, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimpolicydescriptions"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17200, 17201, 17202, 17203, 17205, 17206, 17207, 17208, 17209], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: apimanagement-apimpolicydescriptions\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17199, 17210, 17211, 17212, 17213, 17214], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicydescriptions.json, version:2.0 }, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicydescriptions, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17215], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicydescriptions.json, version:2.0 }, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicydescriptions, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimpolicydescriptions: DataRow\">azure.com:apimanagement-apimpolicydescriptions</span>", children: [17197, 17198, 17216], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimpolicydescriptions.json, version:2.0 }, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicydescriptions, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicydescriptions/2019-12-01-previ... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment.\">Use these REST APIs for performing re<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-01-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17225], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410756, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimpolicysnippets"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17221, 17222, 17223, 17224, 17226, 17227, 17228, 17229, 17230, 17231], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-01-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimpolicysnippets\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-01-01: DataRow\">2019-01-01</span>", children: [17220, 17232, 17233, 17234, 17235, 17236], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicysnippets, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17237], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-01-01: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicysnippets, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimpolicysnippets: DataRow\">azure.com:apimanagement-apimpolicysnippets</span>", children: [17218, 17219, 17238], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-01-01\nversions: { 2019-01-01:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing retrieving a collection of policy snippets available in Azure API Management deployment., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimpolicysnippets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimpolicysnippets, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimpolicysnippets/2019-01-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Product entity associated with your Azure API Management deployment. The Product entity represents a product in API Management. Products include one or more APIs and their associated terms of use. Once a product is published, developers can subscribe to the product and begin to use the product’s APIs.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17247], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410757, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimproducts"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17243, 17244, 17245, 17246, 17248, 17249, 17250, 17251, 17252, 17253], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Product entity associated with your Azure API Management deployment. The Product entity represents a product in API Management. Products include one or more APIs and their associated terms of use. Once a product is published, developers can subscribe to the product and begin to use the product’s APIs.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimproducts\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17242, 17254, 17255, 17256, 17257, 17258], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Product entity associated with your Azure API Management deployment. The Product entity represents a product in API Management. Products include one or more APIs and their associated terms of use. Once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproducts.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproducts, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17259], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Product entity associated with your Azure API Management deployment. The Product entity represents a product in API Management. Products include one or more APIs and their associated terms of use. Once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproducts.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproducts, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproducts/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimproducts: DataRow\">azure.com:apimanagement-apimproducts</span>", children: [17240, 17241, 17260], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Product entity associated with your Azure API Management deployment. The Product entity represents a product in API Management. Products include one or more APIs and their associated terms of use. Once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproducts.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproducts, x-tags:[Azure, Microsoft] }, swagg... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations to retrieve Products by Tags in Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17269], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410758, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimproductsByTags"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17265, 17266, 17267, 17268, 17270, 17271, 17272, 17273, 17274, 17275], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations to retrieve Products by Tags in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimproductsByTags\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17264, 17276, 17277, 17278, 17279, 17280], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing operations to retrieve Products by Tags in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproductsByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproductsByTags, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17281], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations to retrieve Products by Tags in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproductsByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproductsByTags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimproductsByTags: DataRow\">azure.com:apimanagement-apimproductsByTags</span>", children: [17262, 17263, 17282], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations to retrieve Products by Tags in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimproductsByTags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproductsByTags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproductsByTags/2019-12-01-preview/swagger.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-01-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Property entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and properties. Each API Management service instance has a properties collection of key/value pairs that are global to the service instance. These properties can be used to manage constant string values across all API configuration and policies.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-01-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17291], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410759, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimproperties"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17287, 17288, 17289, 17290, 17292, 17293, 17294, 17295, 17296, 17297], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Property entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and properties. Each API Management service instance has a properties collection of key/value pairs that are global to the service instance. These properties can be used to manage constant string values across all API configuration and policies.\ntitle: ApiManagementClient\nversion: 2019-01-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimproperties\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-01-01: DataRow\">2019-01-01</span>", children: [17286, 17298, 17299, 17300, 17301, 17302], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Property entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and properties. Each API Management service instance has a properties collection of key/value pairs that are global to the service instance. These properties can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/stable/2019-01-01/apimproperties.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimproperties, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17303], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-01-01: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Property entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and properties. Each API Management service instance has a properties collection of key/value pairs that are global to the service instance. These properties can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.g..., swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimproperties/2019-01-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-01-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimproperties: DataRow\">azure.com:apimanagement-apimproperties</span>", children: [17284, 17285, 17304], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-01-01\nversions: { 2019-01-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Property entity associated with your Azure API Management deployment. API Management policies are a powerful capability of the system that allow the publisher to change the behavior of the API through configuration. Policies are a collection of statements that are executed sequentially on the request or response of an API. Policy statements can be constructed using literal text values, policy expressions, and properties. Each API Management service instance has a properties collection of key/value pairs that are global to the service instance. These properties can be used to manage constant string values across all API configuration and policies., title:ApiManagementClient, version:2019-01-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Quota entity associated with your Azure API Management deployment. To configure call rate limit and quota policies refer to [how to configure call rate limit and quota](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-product-with-rules#a-namepolicies-ato-configure-call-rate-limit-and-quota-policies).\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17313], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410760, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimquotas"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17309, 17310, 17311, 17312, 17314, 17315, 17316, 17317, 17318, 17319], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Quota entity associated with your Azure API Management deployment. To configure call rate limit and quota policies refer to [how to configure call rate limit and quota](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-product-with-rules#a-namepolicies-ato-configure-call-rate-limit-and-quota-policies).\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimquotas\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17308, 17320, 17321, 17322, 17323, 17324], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Use these REST APIs for performing operations on Quota entity associated with your Azure API Management deployment. To configure call rate limit and quota policies refer to [how to configure call rate limit and quota](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-product-with-rules#a-namepolicies-ato-configure-call-rate-limit-and-quota-policies)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimquotas.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimquotas, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17325], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on Quota entity associated with your Azure API Management deployment. To configure call rate limit and quota policies refer to [how to configure call rate limit and quota](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-product-with-rules#a-namepolicies-ato-configure-call-rate-limit-and-quota-policies)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimquotas.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimquotas, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimquotas/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimquotas: DataRow\">azure.com:apimanagement-apimquotas</span>", children: [17306, 17307, 17326], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on Quota entity associated with your Azure API Management deployment. To configure call rate limit and quota policies refer to [how to configure call rate limit and quota](https://docs.microsoft.com/en-us/azure/api-management/api-management-howto-product-with-rules#a-namepolicies-ato-configure-call-rate-limit-and-quota-policies)., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimquotas.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimquotas, x-tags:[Azu... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations in Azure API Management deployment.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17335], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410761, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimregions"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17331, 17332, 17333, 17334, 17336, 17337, 17338, 17339, 17340, 17341], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations in Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimregions\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17330, 17342, 17343, 17344, 17345, 17346], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for performing operations in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimregions.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimregions, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17347], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimregions.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimregions, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimregions: DataRow\">azure.com:apimanagement-apimregions</span>", children: [17328, 17329, 17348], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for performing operations in Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimregions.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimregions, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimregions/2019-12-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs to get the analytics reports associated with your Azure API Management deployment.\">Use these REST APIs to get the analyt<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17357], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410762, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimreports"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17353, 17354, 17355, 17356, 17358, 17359, 17360, 17361, 17362, 17363], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs to get the analytics reports associated with your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimreports\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17352, 17364, 17365, 17366, 17367, 17368], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs to get the analytics reports associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimreports.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimreports, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17369], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs to get the analytics reports associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimreports.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimreports, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimreports: DataRow\">azure.com:apimanagement-apimreports</span>", children: [17350, 17351, 17370], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs to get the analytics reports associated with your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimreports.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimreports, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimreports/2019-12-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Subscription entity associated with your Azure API Management deployment. The Subscription entity represents the association between a user and a product in API Management. Products contain one or more APIs, and once a product is published, developers can subscribe to the product and begin to use the product’s APIs.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17379], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410763, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimsubscriptions"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17375, 17376, 17377, 17378, 17380, 17381, 17382, 17383, 17384, 17385], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Subscription entity associated with your Azure API Management deployment. The Subscription entity represents the association between a user and a product in API Management. Products contain one or more APIs, and once a product is published, developers can subscribe to the product and begin to use the product’s APIs.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimsubscriptions\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17374, 17386, 17387, 17388, 17389, 17390], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Subscription entity associated with your Azure API Management deployment. The Subscription entity represents the association between a user and a product in API Management. Products contain one or more APIs, and once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimsubscriptions.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimsubscriptions, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17391], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Subscription entity associated with your Azure API Management deployment. The Subscription entity represents the association between a user and a product in API Management. Products contain one or more APIs, and once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimsubscriptions.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimsubscriptions, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimsubscriptions/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimsubscriptions: DataRow\">azure.com:apimanagement-apimsubscriptions</span>", children: [17372, 17373, 17392], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Subscription entity associated with your Azure API Management deployment. The Subscription entity represents the association between a user and a product in API Management. Products contain one or more APIs, and once a product is published, developers can subscribe to the product and begin to use the product’s APIs., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimsubscriptions.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimsubscriptions, x-tags:[A... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-04-17T07:33:27.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for querying APIs. Operations and Products by tags in your Azure API Management deployment.\">Use these REST APIs for querying APIs<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17401], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410764, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimtagresources"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17397, 17398, 17399, 17400, 17402, 17403, 17404, 17405, 17406, 17407], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for querying APIs. Operations and Products by tags in your Azure API Management deployment.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimtagresources\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17396, 17408, 17409, 17410, 17411, 17412], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\ninfo: { description:Use these REST APIs for querying APIs. Operations and Products by tags in your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtagresources.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtagresources, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17413], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for querying APIs. Operations and Products by tags in your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtagresources.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtagresources, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimtagresources: DataRow\">azure.com:apimanagement-apimtagresources</span>", children: [17394, 17395, 17414], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-04-17T07:33:27.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2019-04-17T07:33:27.000Z, info:{ description:Use these REST APIs for querying APIs. Operations and Products by tags in your Azure API Management deployment., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtagresources.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtagresources, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtagresources/2019-12-01-preview/swagger.yaml, o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-04-17T07:33:27.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on Tag entity in your Azure API Management deployment. Tags can be assigned to APIs, Operations and Products.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17423], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410765, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimtags"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17419, 17420, 17421, 17422, 17424, 17425, 17426, 17427, 17428, 17429], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on Tag entity in your Azure API Management deployment. Tags can be assigned to APIs, Operations and Products.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimtags\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17418, 17430, 17431, 17432, 17433, 17434], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on Tag entity in your Azure API Management deployment. Tags can be assigned to APIs, Operations and Products., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtags, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17435], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Tag entity in your Azure API Management deployment. Tags can be assigned to APIs, Operations and Products., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimtags: DataRow\">azure.com:apimanagement-apimtags</span>", children: [17416, 17417, 17436], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on Tag entity in your Azure API Management deployment. Tags can be assigned to APIs, Operations and Products., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtags.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimtags, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtags/2019-12-01-preview/swa... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on tenant entity associated with your Azure API Management deployment. Using this entity you can manage properties and configuration that apply to the entire API Management service instance.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17445], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410766, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["false"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimtenant"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17441, 17442, 17443, 17444, 17446, 17447, 17448, 17449, 17450, 17451], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on tenant entity associated with your Azure API Management deployment. Using this entity you can manage properties and configuration that apply to the entire API Management service instance.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: false\nx-providerName: azure.com\nx-serviceName: apimanagement-apimtenant\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17440, 17452, 17453, 17454, 17455, 17456], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Use these REST APIs for performing operations on tenant entity associated with your Azure API Management deployment. Using this entity you can manage properties and configuration that apply to the entire API Management service instance., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtenant.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimtenant, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17457], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on tenant entity associated with your Azure API Management deployment. Using this entity you can manage properties and configuration that apply to the entire API Management service instance., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtenant.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimtenant, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimtenant: DataRow\">azure.com:apimanagement-apimtenant</span>", children: [17438, 17439, 17458], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2017-12-04T09:12:06.000Z, info:{ description:Use these REST APIs for performing operations on tenant entity associated with your Azure API Management deployment. Using this entity you can manage properties and configuration that apply to the entire API Management service instance., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimtenant.json, version:2.0 }, x-preferred:false, x-providerName:azure.com, x-serviceName:apimanagement-apimtenant, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimtenant/2019-12-01-preview/swagger.json, swaggerYamlUr... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-12-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17467], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410767, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimusers"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17463, 17464, 17465, 17466, 17468, 17469, 17470, 17471, 17472, 17473], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed.\ntitle: ApiManagementClient\nversion: 2019-12-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimusers\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-12-01-preview: DataRow\">2019-12-01-preview</span>", children: [17462, 17474, 17475, 17476, 17477, 17478], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimusers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimusers, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17479], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-12-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimusers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimusers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-12-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimusers: DataRow\">azure.com:apimanagement-apimusers</span>", children: [17460, 17461, 17480], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2019-12-01-preview\nversions: { 2019-12-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on User entity in Azure API Management deployment. The User entity in API Management represents the developers that call the APIs of the products to which they are subscribed., title:ApiManagementClient, version:2019-12-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2019-12-01-preview/apimusers.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimusers, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimusers/2019-12-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-06-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.\">Use these REST APIs for performing op<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApiManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-06-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17489], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410768, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["apimanagement-apimversionsets"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17485, 17486, 17487, 17488, 17490, 17491, 17492, 17493, 17494, 17495], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning.\ntitle: ApiManagementClient\nversion: 2018-06-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: apimanagement-apimversionsets\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Use these REST <span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-02-11T11:58:34.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-06-01-preview: DataRow\">2018-06-01-preview</span>", children: [17484, 17496, 17497, 17498, 17499, 17500], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimversionsets, x-tags:[Azure, Microsoft] }\nupdated: 2019-02-11T11:58:34.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17501], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-06-01-preview: { added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimversionsets, x-tags:[Azure, Microsoft] }, updated:2019-02-11T11:58:34.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversionsets/2018-06-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-06-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:apimanagement-apimversionsets: DataRow\">azure.com:apimanagement-apimversionsets</span>", children: [17482, 17483, 17502], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2018-06-01-preview\nversions: { 2018-06-01-preview:{ added:2018-11-20T14:36:34.000Z, info:{ description:Use these REST APIs for performing operations on the ApiVersionSet entity associated with your Azure API Management deployment. Using this entity you create and manage API Version Sets that are used to group APIs for consistent versioning., title:ApiManagementClient, version:2018-06-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/apimanagement/resource-manager/Microsoft.ApiManagement/preview/2018-06-01-preview/apimversionsets.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:apimanagement-apimversionsets, x-tags:[Azure, Microsoft] }, updated:2019-02-11T11:58:34.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/apimanagement-apimversion... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-17T10:27:09.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-11-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2020-03-17T10:27:09.000Z"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["AppConfigurationManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-11-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17510], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410769, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["appconfiguration"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17507, 17508, 17509, 17511, 17512, 17513, 17514, 17515, 17516], rightAlign: false, values: ["<span class=\"formatted\" title=\"title: AppConfigurationManagementClient\nversion: 2019-11-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: appconfiguration\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">title: </span>AppConfigurationManag<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-11-01-preview: DataRow\">2019-11-01-preview</span>", children: [17506, 17517, 17518, 17519, 17520, 17521], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-17T10:27:09.000Z\ninfo: { title:AppConfigurationManagementClient, version:2019-11-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/preview/2019-11-01-preview/appconfiguration.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:appconfiguration, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-17T10:27:09.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17522], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-11-01-preview: { added:2020-03-17T10:27:09.000Z, info:{ title:AppConfigurationManagementClient, version:2019-11-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/preview/2019-11-01-preview/appconfiguration.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:appconfiguration, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-11-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:appconfiguration: DataRow\">azure.com:appconfiguration</span>", children: [17504, 17505, 17523], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2020-03-17T10:27:09.000Z\npreferred: 2019-11-01-preview\nversions: { 2019-11-01-preview:{ added:2020-03-17T10:27:09.000Z, info:{ title:AppConfigurationManagementClient, version:2019-11-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/preview/2019-11-01-preview/appconfiguration.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:appconfiguration, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/appconfiguration/2019-11-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2020-03-17T10:27:09.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-10-04T15:22:20.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-09-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-10-04T15:22:20.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Log Analytics API reference for management of saved Queries within Query Packs.\">Azure Log Analytics API reference for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Azure Log Analytics Query Packs"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-09-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17532], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410770, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-QueryPackQueries_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17528, 17529, 17530, 17531, 17533, 17534, 17535, 17536, 17537], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Log Analytics API reference for management of saved Queries within Query Packs.\ntitle: Azure Log Analytics Query Packs\nversion: 2019-09-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-QueryPackQueries_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Log Analy<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-09-01-preview: DataRow\">2019-09-01-preview</span>", children: [17527, 17538, 17539, 17540, 17541, 17542], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-10-04T15:22:20.000Z\ninfo: { description:Azure Log Analytics API reference for management of saved Queries within Query Packs., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPackQueries_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPackQueries_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-10-04T15:22:20.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17543], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-09-01-preview: { added:2019-10-04T15:22:20.000Z, info:{ description:Azure Log Analytics API reference for management of saved Queries within Query Packs., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPackQueries_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPackQueries_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-09-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-QueryPackQueries_API: DataRow\">azure.com:applicationinsights-QueryPackQueries_API</span>", children: [17525, 17526, 17544], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-10-04T15:22:20.000Z\npreferred: 2019-09-01-preview\nversions: { 2019-09-01-preview:{ added:2019-10-04T15:22:20.000Z, info:{ description:Azure Log Analytics API reference for management of saved Queries within Query Packs., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPackQueries_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPackQueries_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPackQueries_API/2019-09-01-preview/swagger.yaml... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-10-04T15:22:20.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-10-04T15:22:20.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2019-09-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2019-10-04T15:22:20.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Log Analytics API reference for Query Packs management.\">Azure Log Analytics API reference for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Azure Log Analytics Query Packs"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2019-09-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17553], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410771, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-QueryPacks_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17549, 17550, 17551, 17552, 17554, 17555, 17556, 17557, 17558], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Log Analytics API reference for Query Packs management.\ntitle: Azure Log Analytics Query Packs\nversion: 2019-09-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-QueryPacks_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Log Analy<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2019-09-01-preview: DataRow\">2019-09-01-preview</span>", children: [17548, 17559, 17560, 17561, 17562, 17563], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-10-04T15:22:20.000Z\ninfo: { description:Azure Log Analytics API reference for Query Packs management., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPacks_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPacks_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-10-04T15:22:20.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17564], rightAlign: false, values: ["<span class=\"formatted\" title=\"2019-09-01-preview: { added:2019-10-04T15:22:20.000Z, info:{ description:Azure Log Analytics API reference for Query Packs management., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPacks_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPacks_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2019-09-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-QueryPacks_API: DataRow\">azure.com:applicationinsights-QueryPacks_API</span>", children: [17546, 17547, 17565], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2019-10-04T15:22:20.000Z\npreferred: 2019-09-01-preview\nversions: { 2019-09-01-preview:{ added:2019-10-04T15:22:20.000Z, info:{ description:Azure Log Analytics API reference for Query Packs management., title:Azure Log Analytics Query Packs, version:2019-09-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2019-09-01-preview/QueryPacks_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-QueryPacks_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-QueryPacks_API/2019-09-01-preview/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2019-10-04T15:22:20.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-04-24T10:15:00.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-04-24T10:15:00.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for web test based alerting.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17574], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410772, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-aiOperations_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17570, 17571, 17572, 17573, 17575, 17576, 17577, 17578, 17579], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for web test based alerting.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-aiOperations_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17569, 17580, 17581, 17582, 17583, 17584], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-04-24T10:15:00.000Z\ninfo: { description:Azure Application Insights client for web test based alerting., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/aiOperations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-aiOperations_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-04-24T10:15:00.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17585], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2017-04-24T10:15:00.000Z, info:{ description:Azure Application Insights client for web test based alerting., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/aiOperations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-aiOperations_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-aiOperations_API: DataRow\">azure.com:applicationinsights-aiOperations_API</span>", children: [17567, 17568, 17586], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-04-24T10:15:00.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2017-04-24T10:15:00.000Z, info:{ description:Azure Application Insights client for web test based alerting., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/aiOperations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-aiOperations_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-aiOperations_API/2015-05-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-04-24T10:15:00.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for saved items.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17595], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410773, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-analyticsItems_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17591, 17592, 17593, 17594, 17596, 17597, 17598, 17599, 17600], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for saved items.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-analyticsItems_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17590, 17601, 17602, 17603, 17604, 17605], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Azure Application Insights client for saved items., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/analyticsItems_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-analyticsItems_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17606], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2018-11-20T14:36:34.000Z, info:{ description:Azure Application Insights client for saved items., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/analyticsItems_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-analyticsItems_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-analyticsItems_API: DataRow\">azure.com:applicationinsights-analyticsItems_API</span>", children: [17588, 17589, 17607], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:Azure Application Insights client for saved items., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/analyticsItems_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-analyticsItems_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-analyticsItems_API/2015-05-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for Annotations for a component.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17616], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410774, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-componentAnnotations_API\">applicationinsights-componentAnnotati<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17612, 17613, 17614, 17615, 17617, 17618, 17619, 17620, 17621], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for Annotations for a component.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentAnnotations_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17611, 17622, 17623, 17624, 17625, 17626], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\ninfo: { description:Azure Application Insights client for Annotations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentAnnotations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentAnnotations_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17627], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for Annotations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentAnnotations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentAnnotations_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentAnnotations_API: DataRow\">azure.com:applicationinsights-componentAnnotations_API</span>", children: [17609, 17610, 17628], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for Annotations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentAnnotations_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentAnnotations_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentAnnotations_API/2015-05-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for API keys of a component.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17637], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410775, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-componentApiKeys_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17633, 17634, 17635, 17636, 17638, 17639, 17640, 17641, 17642], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for API keys of a component.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentApiKeys_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17632, 17643, 17644, 17645, 17646, 17647], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Azure Application Insights client for API keys of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentApiKeys_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentApiKeys_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17648], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for API keys of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentApiKeys_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentApiKeys_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentApiKeys_API: DataRow\">azure.com:applicationinsights-componentApiKeys_API</span>", children: [17630, 17631, 17649], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for API keys of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentApiKeys_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentApiKeys_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentApiKeys_API/2015-05-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for Continuous Export of a component.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17658], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410776, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-componentContinuousExport_API\">applicationinsights-componentContinuo<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17654, 17655, 17656, 17657, 17659, 17660, 17661, 17662, 17663], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for Continuous Export of a component.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentContinuousExport_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17653, 17664, 17665, 17666, 17667, 17668], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Azure Application Insights client for Continuous Export of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentContinuousExport_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentContinuousExport_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17669], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for Continuous Export of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentContinuousExport_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentContinuousExport_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentContinuousExport_API: DataRow\">azure.com:applicationinsights-componentContinuousExport_API</span>", children: [17651, 17652, 17670], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for Continuous Export of a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentContinuousExport_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentContinuousExport_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentContinuousExport_API/2015-05-01/swagger.yaml, opena... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for selecting pricing plans and options.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17679], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410777, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-componentFeaturesAndPricing_API\">applicationinsights-componentFeatures<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17675, 17676, 17677, 17678, 17680, 17681, 17682, 17683, 17684, 17685], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for selecting pricing plans and options.\ntitle: ApplicationInsightsManagementClient\nversion: 2017-10-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentFeaturesAndPricing_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2017-10-01: DataRow\">2017-10-01</span>", children: [17674, 17686, 17687, 17688, 17689, 17690], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Azure Application Insights client for selecting pricing plans and options., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/componentFeaturesAndPricing_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentFeaturesAndPricing_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17691], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-01: { added:2018-11-20T14:36:34.000Z, info:{ description:Azure Application Insights client for selecting pricing plans and options., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/componentFeaturesAndPricing_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentFeaturesAndPricing_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentFeaturesAndPricing_API: DataRow\">azure.com:applicationinsights-componentFeaturesAndPricing_API</span>", children: [17672, 17673, 17692], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2017-10-01\nversions: { 2017-10-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:Azure Application Insights client for selecting pricing plans and options., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/componentFeaturesAndPricing_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentFeaturesAndPricing_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/2017-10-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentFeaturesAndPricing_API/... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2018-05-01-preview"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for ProactiveDetection configurations of a component.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2018-05-01-preview"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17701], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410778, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-preferred: Boolean\">x-preferred</span>", children: [], rightAlign: false, values: ["true"] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-componentProactiveDetection_API\">applicationinsights-componentProactiv<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17697, 17698, 17699, 17700, 17702, 17703, 17704, 17705, 17706, 17707], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for ProactiveDetection configurations of a component.\ntitle: ApplicationInsightsManagementClient\nversion: 2018-05-01-preview\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-preferred: true\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentProactiveDetection_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: String\">updated</span>", children: [], rightAlign: false, values: ["2019-07-22T11:10:17.000Z"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2018-05-01-preview: DataRow\">2018-05-01-preview</span>", children: [17696, 17708, 17709, 17710, 17711, 17712], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\ninfo: { description:Azure Application Insights client for ProactiveDetection configurations of a component., title:ApplicationInsightsManagementClient, version:2018-05-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2018-05-01/componentProactiveDetection_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentProactiveDetection_API, x-tags:[Azure, Microsoft] }\nupdated: 2019-07-22T11:10:17.000Z\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17713], rightAlign: false, values: ["<span class=\"formatted\" title=\"2018-05-01-preview: { added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for ProactiveDetection configurations of a component., title:ApplicationInsightsManagementClient, version:2018-05-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2018-05-01/componentProactiveDetection_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentProactiveDetection_API, x-tags:[Azure, Microsoft] }, updated:2019-07-22T11:10:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2018-05-01-preview: </span><span class=\"structural\">{ </span><span class=\"structural\">adde...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentProactiveDetection_API: DataRow\">azure.com:applicationinsights-componentProactiveDetection_API</span>", children: [17694, 17695, 17714], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\npreferred: 2018-05-01-preview\nversions: { 2018-05-01-preview:{ added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for ProactiveDetection configurations of a component., title:ApplicationInsightsManagementClient, version:2018-05-01-preview, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2018-05-01/componentProactiveDetection_API.json, version:2.0 }, x-preferred:true, x-providerName:azure.com, x-serviceName:applicationinsights-componentProactiveDetection_API, x-tags:[Azure, Microsoft] }, updated:2019-07-22T11:10:17.000Z, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentProactiveDetection_API/2018-05-01-preview/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for work item configurations for a component.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17723], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410779, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-componentWorkItemConfigs_API\">applicationinsights-componentWorkItem<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17719, 17720, 17721, 17722, 17724, 17725, 17726, 17727, 17728], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for work item configurations for a component.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-componentWorkItemConfigs_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17718, 17729, 17730, 17731, 17732, 17733], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\ninfo: { description:Azure Application Insights client for work item configurations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentWorkItemConfigs_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17734], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for work item configurations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentWorkItemConfigs_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-componentWorkItemConfigs_API: DataRow\">azure.com:applicationinsights-componentWorkItemConfigs_API</span>", children: [17716, 17717, 17735], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-03-10T09:23:51.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2018-03-10T09:23:51.000Z, info:{ description:Azure Application Insights client for work item configurations for a component., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/componentWorkItemConfigs_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-componentWorkItemConfigs_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-componentWorkItemConfigs_API/2015-05-01/swagger.yaml, o... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-03-10T09:23:51.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2017-12-04T09:12:06.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for Components.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17744], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410780, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-components_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17740, 17741, 17742, 17743, 17745, 17746, 17747, 17748, 17749], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for Components.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-components_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2015-05-01: DataRow\">2015-05-01</span>", children: [17739, 17750, 17751, 17752, 17753, 17754], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\ninfo: { description:Azure Application Insights client for Components., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/components_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-components_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17755], rightAlign: false, values: ["<span class=\"formatted\" title=\"2015-05-01: { added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for Components., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/components_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-components_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2015-05-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-components_API: DataRow\">azure.com:applicationinsights-components_API</span>", children: [17737, 17738, 17756], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2017-12-04T09:12:06.000Z\npreferred: 2015-05-01\nversions: { 2015-05-01:{ added:2017-12-04T09:12:06.000Z, info:{ description:Azure Application Insights client for Components., title:ApplicationInsightsManagementClient, version:2015-05-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/stable/2015-05-01/components_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-components_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-components_API/2015-05-01/swagger.yaml, openapiVer:2.0 } }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2017-12-04T09:12:06.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-11-20T14:36:34.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Apis for customer in enterprise agreement migrate to new pricing model or rollback to legacy pricing model.\">Apis for customer in enterprise agree<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2017-10-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17765], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410781, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"applicationinsights-eaSubscriptionMigration_API\">applicationinsights-eaSubscriptionMig<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17761, 17762, 17763, 17764, 17766, 17767, 17768, 17769, 17770], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Apis for customer in enterprise agreement migrate to new pricing model or rollback to legacy pricing model.\ntitle: ApplicationInsightsManagementClient\nversion: 2017-10-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-eaSubscriptionMigration_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Apis for custom<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>"] },
{ name: "<span title=\"swaggerUrl: String\">swaggerUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.json\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"swaggerYamlUrl: String\">swaggerYamlUrl</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.yaml\">https://api.apis.guru/v2/specs/azure.<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"openapiVer: String\">openapiVer</span>", children: [], rightAlign: false, values: ["2.0"] },
{ name: "<span title=\"2017-10-01: DataRow\">2017-10-01</span>", children: [17760, 17771, 17772, 17773, 17774, 17775], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\ninfo: { description:Apis for customer in enterprise agreement migrate to new pricing model or rollback to legacy pricing model., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/eaSubscriptionMigration_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-eaSubscriptionMigration_API, x-tags:[Azure, Microsoft] }\nswaggerUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.json\nswaggerYamlUrl: https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.yaml\nopenapiVer: 2.0\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"versions: DataRow\">versions</span>", children: [17776], rightAlign: false, values: ["<span class=\"formatted\" title=\"2017-10-01: { added:2018-11-20T14:36:34.000Z, info:{ description:Apis for customer in enterprise agreement migrate to new pricing model or rollback to legacy pricing model., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/eaSubscriptionMigration_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-eaSubscriptionMigration_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.yaml, openapiVer:2.0 }\"><span class=\"structural\">{ </span><span class=\"structural\">2017-10-01: </span><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"azure.com:applicationinsights-eaSubscriptionMigration_API: DataRow\">azure.com:applicationinsights-eaSubscriptionMigration_API</span>", children: [17758, 17759, 17777], rightAlign: false, values: ["<span class=\"formatted\" title=\"added: 2018-11-20T14:36:34.000Z\npreferred: 2017-10-01\nversions: { 2017-10-01:{ added:2018-11-20T14:36:34.000Z, info:{ description:Apis for customer in enterprise agreement migrate to new pricing model or rollback to legacy pricing model., title:ApplicationInsightsManagementClient, version:2017-10-01, x-apisguru-categories:[cloud], x-logo:{ url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }, x-origin:[1 x 3] { format:swagger, url:https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/applicationinsights/resource-manager/Microsoft.Insights/preview/2017-10-01/eaSubscriptionMigration_API.json, version:2.0 }, x-providerName:azure.com, x-serviceName:applicationinsights-eaSubscriptionMigration_API, x-tags:[Azure, Microsoft] }, swaggerUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2017-10-01/swagger.json, swaggerYamlUrl:https://api.apis.guru/v2/specs/azure.com/applicationinsights-eaSubscriptionMigration_API/2... }\"><span class=\"structural\">{ </span><span class=\"structural\">added: </span>2018-11-20T14:36:34.000Z<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"preferred: String\">preferred</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"added: String\">added</span>", children: [], rightAlign: false, values: ["2018-03-10T09:23:51.000Z"] },
{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure Application Insights client for favorites.\">Azure Application Insights client for<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["ApplicationInsightsManagementClient"] },
{ name: "<span title=\"version: String\">version</span>", children: [], rightAlign: false, values: ["2015-05-01"] },
{ name: "<span title=\"x-apisguru-categories: List<String>\">x-apisguru-categories</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"cloud\"><span class=\"structural\">[</span>cloud<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\">https://api.apis.guru/v2/cache/logo/h<span class=\"structural\">...</span></span>"] },
{ name: "<span title=\"x-logo: DataRow\">x-logo</span>", children: [17786], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://api.apis.guru/v2/cac<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"x-origin: DataFrame\">x-origin</span>", children: [], rightAlign: false, values: [{ frameId: 1023410782, value: "<b>DataFrame 1 x 3</b>" }] },
{ name: "<span title=\"x-providerName: String\">x-providerName</span>", children: [], rightAlign: false, values: ["azure.com"] },
{ name: "<span title=\"x-serviceName: String\">x-serviceName</span>", children: [], rightAlign: false, values: ["applicationinsights-favorites_API"] },
{ name: "<span title=\"x-tags: List<String>\">x-tags</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Azure\nMicrosoft\"><span class=\"structural\">[</span>Azure<span class=\"structural\">, </span>Microsoft<span class=\"structural\">]</span></span>"] },
{ name: "<span title=\"info: DataRow\">info</span>", children: [17782, 17783, 17784, 17785, 17787, 17788, 17789, 17790, 17791], rightAlign: false, values: ["<span class=\"formatted\" title=\"description: Azure Application Insights client for favorites.\ntitle: ApplicationInsightsManagementClient\nversion: 2015-05-01\nx-apisguru-categories: [cloud]\nx-logo: { url:https://api.apis.guru/v2/cache/logo/https_assets.onestore.ms_cdnfiles_onestorerolling-1606-01000_shell_v3_images_logo_microsoft.png }\nx-origin: format url version\n 0 swagger https://raw.githubusercontent.com/Azu... 2.0\n\nx-providerName: azure.com\nx-serviceName: applicationinsights-favorites_API\nx-tags: [Azure, Microsoft]\"><span class=\"structural\">{ </span><span class=\"structural\">description: </span>Azure Applicati<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] },
{ name: "<span title=\"updated: Nothing?\">updated</span>", children: [], rightAlign: true, values: ["